﻿/* =========================
   FORMULAR GLOBAL
========================= */

.form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff;
    background: linear-gradient( 180deg, rgba(74, 91, 114, 0.7) 0%, rgba(74, 91, 114, 0.92) 100% );
    border: 1px solid rgba(252, 214, 149, 0.18);
    color: #fff;
    border-radius: 0;
    box-shadow: none;
    transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease, color .25s ease;
}


/* =========================
   HOVER
========================= */

    .form-control:hover {
        background: linear-gradient( 180deg, rgba(29, 47, 73, 0.96) 0%, rgba(18, 33, 55, 0.96) 100% );
        border-color: rgba(252, 214, 149, 0.45);
    }

    /* =========================
   FOCUS
========================= */

    .form-control:focus {
        background: linear-gradient( 180deg, rgba(33, 53, 82, 0.98) 0%, rgba(22, 38, 63, 0.98) 100% );
        border-color: #90B4D3;
        box-shadow: 0 0 0 3px rgba(144, 180, 211, 0.14);
    }

    /* =========================
   PLACEHOLDER
========================= */

    .form-control::placeholder {
        color: rgba(255,255,255,.38);
    }

/* =========================
   TEXTAREA
========================= */

textarea.form-control {
    min-height: 220px;
    padding-top: 14px;
    resize: vertical;
}

/* =========================
   LABELS
========================= */

.control-label,
label {
    font-size: 14px;
    letter-spacing: .02em;
    margin-bottom: 8px;
    display: inline-block;
}

/* =========================
   CHECKBOX / RADIO
========================= */

.form-control.checkbox,
.form-control.checkboxmulti,
.form-control[type=checkbox],
.form-control.radiobutton,
.form-control.radio {
    width: 18px;
    height: 18px;
    box-shadow: none;
    accent-color: #FCD695;
}

/* =========================
   FILE UPLOAD
========================= */

input[type=file].form-control {
    padding: 10px;
    height: auto;
    cursor: pointer;
}

/* =========================
   AUTOFILL FIX CHROME
========================= */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px rgba(7,16,31,.96) inset;
    transition: background-color 9999s ease-in-out 0s;
}
