* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body {
    background-color: #ffcc00;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-dots {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-dots span {
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
}

.login-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 220px;
}

.logo {
    margin-bottom: 80px;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.input-group {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 30px;
    padding: 0 20px;
}

.input-group input {
    width: 100%;
    padding: 20px 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.forgot-link {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: left;
}

.forgot-link a {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}

.new-account {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 150px;
}

.new-account p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.wave-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
}

.wave-content {
    background-image: url('https://www.esri.com/arcgis-blog/wp-content/uploads/2025/04/DramaticOslo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    text-align: center;
    position: relative;
}

.wave-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.find-atm-btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    border: none;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.find-atm-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.home-indicator {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    margin: 10px auto 0;
    opacity: 0.2;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.password-container input {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.forgot-password {
    position: absolute;
    right: 0;
    top: 0;
    color: #0066b3;
    text-decoration: none;
    font-size: 14px;
}

.remember-id {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0066b3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.login-btn {
    width: 100%;
    padding: 15px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    margin-top: 20px;
} 