/* Password reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo img {
    width: 68px;
    height:68px;
    border-radius: 8px;
}

h1 {
    color: #333;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

.description {
    color: #6c757d;
    font-size: 15px;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

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

label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

input::placeholder {
    color: #6c757d;
    font-weight: 300;
}

input:focus {
    outline: none;
    background: white;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.btn {
    width: 100%;
    padding: 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.back-link {
    display: block;
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #333;
    text-decoration: underline;
}

.success-message {
    background: #f0f9ff;
    color: #0369a1;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #bae6fd;
    text-align: center;
}

.error-message {
    background: #fff5f5;
    color: #dc3545;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #fecaca;
    text-align: center;
}

@media (max-width: 480px) {
    .container {
        margin: 20px;
        padding: 32px 24px;
        border-radius: 20px;
        max-width: 100%;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .description {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    input {
        padding: 14px 18px;
        font-size: 16px;
    }
    
    .btn {
        padding: 14px;
    }
}

