/*
 * Plugin Name: Plug4Kova
 * Author: Alexey Chaschin
 * Version: 1.0
 */


@import 'css/font-awesome.min.css';
@import 'css/colorbox.min.css';
@import 'css/flexslider.css';
@import 'css/selectric.css';
@import 'css/icheck-skins.css';
@import 'css/jquery-ui.css';
@import 'css/jquery-ui.structure.css';
@import 'css/jquery-ui.theme.css';
@import 'css/screen.min.css';
@import 'css/single.min.css';
@import 'css/mobile.min.css';

/* ===== Form Layout ===== */
.register-form .form-group {
    margin-bottom: 20px;
}
.register-form {
    padding: 40px !important;
    border-radius: 20px !important;
}
.register-form .form-title {
    font-size: 24px;
    font-weight: 700;
}

/* ===== Labels ===== */
.register-form .form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    line-height: normal;
}

/* Red star */
.register-form .required {
    color: red;
    margin-left: 4px;
}

/* ===== Inputs ===== */
.page-template-request.page-template-request-php .register-form .form-control {
    width: 100% !important;
    padding: 20px 14px !important;
    font-size: 15px !important;
    border: 1px solid #ede8e8;
    border-radius: 4px;
    background-color: #fff !important;
    transition: all 0.25s ease;
}

/* Placeholder */
.register-form .form-control::placeholder {
    color: #9aa0a6;
}

/* Focus highlight (UX FIX) */
.register-form .form-control:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
    outline: none;
}

/* Select styling */
.page-template-request.page-template-request-php .register-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
    padding: 0 12px !important;
}

/* Submit button */
.btn-continue {
    background: #0073aa;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-continue:hover {
    background: #005f8d;
}
@media screen and (max-width:767px) {
    .register-form {
        padding: 20px !important;
        border-radius: 20px !important;
    }
}