.reset-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

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

.reset-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    position: relative;
    overflow: hidden;
}

.reset-icon::before {
    content: '🔐';
    font-size: 36px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h2 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.description {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.email-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.email-input::placeholder {
    color: #a0aec0;
}

.error-message {
    color: #e53e3e;
    font-size: 14px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fed7d7;
    border-radius: 8px;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.help-section {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.help-title {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.help-text {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
}

.back-link {
    color: #718096;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: #3b82f6;
}

.security-notice {
    background: #edf2f7;
    border-left: 4px solid #3b82f6;
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
    text-align: left;
}

.security-notice .notice-title {
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.security-notice .notice-text {
    color: #4a5568;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .reset-container {
        padding: 24px;
        margin: 10px;
    }
    
    h2 {
        font-size: 24px;
    }

    .reset-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .email-input {
        padding: 14px 16px;
        font-size: 16px;
    }
}