/* Password Recovery - Desktop First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #EE4D2D 0%, #FF6347 100%);
}

.page-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) { width: 400px; height: 400px; top: -150px; left: -150px; }
.bg-circle:nth-child(2) { width: 300px; height: 300px; bottom: -100px; right: -100px; animation-delay: 2s; }
.bg-circle:nth-child(3) { width: 200px; height: 200px; top: 40%; right: 15%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.forgot-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
    position: relative;
    z-index: 10;
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.logo-container {
    text-align: center;
    margin-bottom: 24px;
}

.logo {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.logo i {
    font-size: 34px;
    color: #EE4D2D;
}

.logo-text {
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.forgot-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.forgot-header {
    text-align: center;
    margin-bottom: 24px;
}

.icon-container {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #EE4D2D 0%, #FF6347 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(238, 77, 45, 0.3);
}

.icon-container i {
    font-size: 32px;
    color: white;
}

.forgot-header h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.forgot-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.input-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #EE4D2D;
    background: white;
    box-shadow: 0 4px 12px rgba(238, 77, 45, 0.15);
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}

.form-control:focus ~ .input-icon {
    color: #EE4D2D;
}

.info-box {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #FFF7ED;
    border-radius: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-box i {
    color: #F59E0B;
    font-size: 16px;
    margin-top: 2px;
}

.info-box p {
    font-size: 13px;
    color: #92400E;
    line-height: 1.5;
    margin: 0;
}

.btn-recover {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #EE4D2D 0%, #FF6347 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(238, 77, 45, 0.3);
}

.btn-recover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(238, 77, 45, 0.4);
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.back-link a:hover {
    color: #EE4D2D;
}

/* Success state */
.success-container {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon i {
    font-size: 40px;
    color: white;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-container h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-container p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}
