/* login.css */

* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #dfe6ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    padding: 20px;
}

.login-card {
    max-width: 360px;
    margin: auto;
    background: #e9eef3;
    border-radius: 20px;
    padding: 30px 25px 35px;
    box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.15), -12px -12px 25px rgba(255, 255, 255, 0.8);
    text-align: center;
}


/* Avatar */

.avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Text */

.login-card h2 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #222;
}

.subtitle {
    margin: 0 0 25px;
    color: #666;
    font-size: 14px;
}


/* Inputs */

.input-group {
    display: flex;
    align-items: center;
    background: #e9eef3;
    border-radius: 30px;
    padding: 12px 16px;
    margin-bottom: 18px;
    box-shadow: inset 6px 6px 10px rgba(0, 0, 0, 0.15), inset -6px -6px 10px rgba(255, 255, 255, 0.8);
}

.input-group .icon {
    font-size: 16px;
    margin-right: 10px;
    color: #666;
}

.input-group input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
}


/* Button */

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #46aac1;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), -4px -4px 10px rgba(255, 255, 255, 0.4);
    transition: 0.3s;
}

.login-btn:hover {
    background: #3a95aa;
}


/* Links */

.extra-links {
    margin-top: 18px;
    font-size: 13px;
    color: #555;
}

.extra-links a {
    color: #000;
    text-decoration: none;
}

.extra-links b {
    font-weight: 600;
}


/* Responsive */

@media (max-width: 400px) {
    .login-card {
        padding: 25px 20px;
    }
}


/*--------- Sing Up Code---------*/


/* extra for select dropdown */

.input-group select {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: #555;
}