:root {
--primary-color: #ea580c;
--primary-hover: #c2410c;
--success-color: #10b981;
--danger-color: #ef4444;
--text-dark: #1f2937;
--text-muted: #6b7280;
--border-color: #e5e7eb;
--bg-light: #f8fafc;
}

* {
font-family: 'Inter', sans-serif;
}

body {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}

.forgot-password-container {
background: white;
border-radius: 1rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
padding: 2.5rem;
width: 100%;
max-width: 450px;
}

.logo-section {
text-align: center;
margin-bottom: 2rem;
}

.logo-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
filter: drop-shadow(0 8px 18px rgba(234, 88, 12, 0.25));
}

.logo-icon img {
width: 80px;
height: 80px;
object-fit: contain;
}

.forgot-password-title {
color: var(--text-dark);
font-weight: 700;
margin-bottom: 0.5rem;
font-size: 1.875rem;
}

.forgot-password-subtitle {
color: var(--text-muted);
font-size: 0.875rem;
margin-bottom: 2rem;
line-height: 1.5;
}

.form-floating {
margin-bottom: 1.5rem;
}

.form-control {
border: 2px solid var(--border-color);
border-radius: 0.75rem;
padding: 1rem 1.2rem;
font-size: 1rem;
height: calc(3.5rem + 2px);
transition: all 0.2s ease;
background: white;
}

.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(234, 88, 12, 0.25);
background: white;
}

.btn-reset {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
border: none;
border-radius: 0.75rem;
padding: 0.875rem 1.5rem;
font-weight: 600;
font-size: 1rem;
color: white;
width: 100%;
transition: all 0.2s ease;
margin-bottom: 1.5rem;
}

.btn-reset:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

.btn-back {
background: transparent;
border: 2px solid var(--text-muted);
border-radius: 0.75rem;
padding: 0.8rem 2rem;
font-weight: 600;
font-size: 0.95rem;
color: var(--text-muted);
width: 100%;
transition: all 0.2s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}

.btn-back:hover {
background: var(--text-muted);
color: white;
text-decoration: none;
}

.alert {
border-radius: 0.75rem;
border: none;
padding: 1rem 1.25rem;
margin-bottom: 1.5rem;
font-weight: 500;
}

.alert-danger {
background-color: rgba(239, 68, 68, 0.1);
color: var(--danger-color);
}

.alert-success {
background-color: rgba(16, 185, 129, 0.1);
color: var(--success-color);
}

.alert-info {
background-color: rgba(59, 130, 246, 0.1);
color: #3b82f6;
}

@media (max-width: 480px) {
.forgot-password-container {
    margin: 1rem;
    padding: 2rem;
}

.forgot-password-title {
    font-size: 1.5rem;
}
}
