/* css/reset-password.css */

:root { 
    --primary-color: #1f7cc0; 
    --bg-light: #f0f2f5; 
    --text-color: #2c3e50; 
}

body { 
    font-family: 'Segoe UI', sans-serif; 
    background-color: var(--bg-light); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; 
}

.reset-card { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    width: 100%; 
    max-width: 400px; 
    text-align: center; 
}

.logo-area img { 
    width: 80px; 
    margin-bottom: 1rem; 
}

h2 { 
    color: var(--text-color); 
    margin-bottom: 0.5rem; 
}

p { 
    color: #666; 
    font-size: 0.95rem; 
    margin-bottom: 2rem; 
}

.input-group { 
    text-align: left; 
    margin-bottom: 1.2rem; 
}

.input-group label { 
    display: block; 
    font-size: 0.9rem; 
    font-weight: 600; 
    margin-bottom: 0.4rem; 
    color: #444; 
}

.input-wrapper { 
    position: relative; 
}

.input-wrapper input { 
    width: 100%; 
    padding: 0.8rem; 
    padding-right: 40px; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    font-size: 1rem; 
    box-sizing: border-box; 
}

.input-wrapper i { 
    position: absolute; 
    right: 12px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #888; 
    cursor: pointer; 
}

button.btn-primary { 
    width: 100%; 
    padding: 0.9rem; 
    background-color: var(--primary-color); 
    color: white; 
    border: none; 
    border-radius: 6px; 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    margin-top: 1rem; 
    transition: background 0.3s; 
}

button.btn-primary:hover { 
    background-color: #155a8a; 
}

button:disabled { 
    background-color: #ccc; 
    cursor: not-allowed; 
}