body {
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */

 .login-box {
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 12px;
}

h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.sub-text {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.secure-text {
    font-size: 12px;
    color: green;
    margin: 10px 0;
}

.secure-icon {
    margin-right: 4px;
}

.form-group {
    margin: 16px 0;
    position: relative;
}

.input-field {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.login-btn {
    background-color: #d2f3d4;
    color: #000;
    padding: 12px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    width: 100%;
    margin-top: 12px;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background-color: #2a9b2d;
    color: #fff;
}

.forgot-link {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #a3a3a3;
    text-decoration: none;
}

.signup-text {
    margin-top: 20px;
    font-size: 14px;
}

.signup-link {
    color: #47c447;
    text-decoration: none;
}

.support-text {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
}

.error {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}
/* Role Modal Styles */
.role-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.role-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    min-width: 300px;
    text-align: center;
}

.role-option {
    display: block;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.role-option:hover {
    background-color: #51ff00;
    color: #fff;
}

#roleClose {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background: #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#roleClose:hover {
    background: #aaa;
}

/* Password field styles */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    background: none;
    border: none;
    display: flex;
    align-items: center;
}

.password-wrapper .input-field {
    padding-right: 40px;
}

.secure-icon {
    color: #3498db;
    margin-right: 8px;
}
