/* static/accounts/css/password-reset.css */

.password-reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.password-reset-card {
    max-width: 450px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px 30px;
}

.password-reset-icon {
    font-size: 64px;
    background: linear-gradient(to bottom right, #393EB4 40%, #8F39B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.password-reset-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(to bottom right, #393EB4 40%, #8F39B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.password-reset-message {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.5;
}

.password-reset-form {
    text-align: left;
}

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

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

.required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #393EB4;
    box-shadow: 0 0 0 3px rgba(57, 62, 180, 0.1);
}

.form-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.btn-reset {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(to bottom right, #393EB4 40%, #8F39B4 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 62, 180, 0.3);
    background: linear-gradient(to bottom right, #4a4fc9 0%, #a04ac9 100%);
}

.password-reset-footer {
    margin-top: 20px;
    text-align: center;
}

.back-link {
    color: #393EB4;
    text-decoration: none;
    font-size: 14px;
}

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

@media (max-width: 768px) {
    .password-reset-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .password-reset-title {
        font-size: 24px;
    }
    
    .password-reset-icon {
        font-size: 48px;
    }
    
    .btn-reset {
        padding: 10px;
        font-size: 14px;
    }
}