/*!
 * Çorum Belediyesi Web Sitesi
 *
 * © 2022 Çorum Belediyesi Bilgi İşlem Müdürlüğü
 *
 * Mehmet Halim COŞKUN <mehmet.coskun@corum.bel.tr>
 *
 */

:root {
    --primary-color: #0061AE;
    --primary-hover-color: #0059A1;
    --secondary-color: #AD005F;
    --secondary-hover-color: #A10059;
    --primary-text-color: #222f3e;
    --secondary-text-color: #495057;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}

.btn-icon svg {
    margin-right: 6px;
}

.alert svg {
    margin-right: 6px;
}

.auth-container {
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/hh-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.auth-wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(37, 145, 251, 0.95) 0.1%, rgba(0, 7, 128, 0.95) 99.8%);
}

.auth-content {
    margin-top: 10vh;
    width: 534px;
}

.auth-content .form-content {
    background-color: white;
    border-radius: 4px;
    border: 1px solid #0087F6;
    box-shadow:
        0 2.8px 2.2px rgba(0, 0, 0, 0.034),
        0 6.7px 5.3px rgba(0, 0, 0, 0.048),
        0 12.5px 10px rgba(0, 0, 0, 0.06),
        0 22.3px 17.9px rgba(0, 0, 0, 0.072),
        0 41.8px 33.4px rgba(0, 0, 0, 0.086),
        0 100px 80px rgba(0, 0, 0, 0.12);
}

.auth-content .form-content .content-title {
    font-family: 'Jost', sans-serif;
}

.auth-content .alert {
    font-family: 'Nunito Sans', sans-serif;
}

.auth-content .form-content .btn-submit {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.auth-content .form-content .form-control {
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.auth-content .form-content .form-control:focus {
    font-weight: 600;
    color: var(--primary-color);
}