/* Reset Password Styles */
.c-reset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.c-reset__container {
    width: 100%;
    max-width: 500px;
}

.c-reset__card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.c-reset__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.c-reset__icon.success {
    color: #4caf50;
}

.c-reset__icon.error {
    color: #f44336;
}

.c-reset__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.c-reset__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.c-reset__btn {
    display: inline-block;
    background-color: #8B5CF6;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.c-reset__btn:hover {
    background-color: #7c3aed;
}

.c-reset form {
    text-align: left;
}

.c-reset .form-group {
    margin-bottom: 20px;
}

.c-reset label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

.c-reset button[type="submit"] {
    width: 100%;
    background-color: #8B5CF6;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.c-reset button[type="submit"]:hover {
    background-color: #7c3aed;
}

.hidden {
    display: none !important;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(139, 92, 246, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    color: white;
    margin-bottom: 10px;
}

.modal-content p {
    color: #b0b0b0;
}

.modal-content label {
    color: white;
}

.modal-content input {
    background-color: #2a2a3e;
    border: 1px solid #444;
    color: white;
}

.modal-content input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.modal-content button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6 0%, #7c3aed 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.modal-content button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.modal-content button[type="submit"]:active {
    transform: translateY(0);
}

.forgot-password-link {
    color: #8B5CF6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: #a78bfa;
    text-decoration: underline;
}

.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 1px solid #34d399;
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin-top: 15px;
    animation: slideUp 0.3s ease;
}