

/* Start:/local/components/utlab/password.restore/templates/.default/style.css?17690686285327*/
.password-restore-wrapper {
    max-width: 450px;
    margin: 40px auto;
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.password-restore-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header {
    margin-bottom: 25px;
    text-align: center;
}

.form-header h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.form-group label::after {
    content: " *";
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: #3498db;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.form-control::placeholder {
    color: #999;
}

.form-text {
    display: block;
    margin-top: 6px;
    color: #7f8c8d;
    font-size: 13px;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    font-size: 15px;
    color: #555;
    padding: 8px 0;
    flex: 1;
}

.radio-label input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked {
    accent-color: #3498db;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    min-width: 200px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

.btn-success {
    background-color: #2ecc71;
    color: white;
    width: 100%;
}

.btn-success:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46,204,113,0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-link {
    background: none;
    color: #3498db;
    text-decoration: underline;
    padding: 10px 15px;
}

.alert {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.alert-danger {
    background-color: #ffeaea;
    border: 1px solid #ffcccc;
    color: #e74c3c;
}

.alert-success {
    background-color: #f0fff4;
    border: 1px solid #d4edda;
    color: #155724;
    text-align: center;
}

.alert-success h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    color: #27ae60;
}

.alert-success p {
    margin: 12px 0;
    line-height: 1.6;
}

.spam-notice {
    margin-top: 20px;
    padding: 12px;
    background-color: #fff3cd;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
}

.actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-icon {
    font-size: 48px;
    color: #2ecc71;
    margin-bottom: 15px;
}

.redirect-notice {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #d4edda;
    color: #7f8c8d;
    font-size: 14px;
}

.form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.form-footer p {
    margin: 8px 0;
}

.form-footer a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.form-footer a:hover {
    text-decoration: underline;
}

.password-requirements {
    margin-top: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.password-requirements p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.password-requirements ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.password-requirements li {
    margin-bottom: 5px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .password-restore-wrapper {
        padding: 25px 20px;
        margin: 20px 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    .form-control {
        padding: 12px 14px;
    }
}
/* End */
/* /local/components/utlab/password.restore/templates/.default/style.css?17690686285327 */
