.login-wrapper {
    height: 100vh;
    width: 100%;
    background: radial-gradient(circle at top right, #1B2735, #090A0F);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.login-box h2 { font-size: 2rem; margin-bottom: 10px; }
.login-box h2 span { color: #007bff; }
.login-box p { color: #ccc; margin-bottom: 30px; font-size: 0.9rem; }

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #007bff;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.15);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.remember-me { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.forgot-pass { color: #007bff; text-decoration: none; }
.forgot-pass:hover { text-decoration: underline; }

.btn-login {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover { background: #0056b3; transform: translateY(-2px); }

.signup-link { margin-top: 25px; font-size: 0.9rem; color: #ccc; }
.signup-link a { color: #007bff; text-decoration: none; font-weight: 600; }

.back-home { margin-top: 20px; }
.back-home a { color: #888; text-decoration: none; font-size: 0.8rem; }
.back-home a:hover { color: white; }


#resetBtn {
    position: relative;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    overflow: hidden;
}

#resetBtn:disabled {
    background: #444;
    cursor: not-allowed;
}

#resetBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 45px; /* Button ki height fix rahegi jab text hide hoga */
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

#message {
    margin-top: 15px;
    font-weight: 500;
}