.reset-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reset-form h2 {
    color: var(--primary-color, #0b1b5a);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.reset-form p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.9em;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color, #0b1b5a);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(11, 27, 90, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color, #0b1b5a) 0%, #1a3a8a 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(11, 27, 90, 0.4);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: var(--primary-color, #0b1b5a);
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
}

.back-link a:hover {
    opacity: 0.8;
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #ff4444;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #00ff00;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

.info-message {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9em;
}

.forgot-link {
    color: var(--main-color, #5865F2);
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
    display: inline-block;
    padding-bottom: 2px;
}

.forgot-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}