﻿:root {
    --jobka-color: #E40071;
    --light-gray-color: #B4B4B4;
}

@font-face {
    font-family: 'Antipasto';
    src: url("../fonts/Antipasto-Pro-Regular.woff") format('woff'), url("../fonts/Antipasto-Pro-Regular.woff2") format('woff2');
    font-style: normal;
    font-weight: normal;
}

* {
    font-family: 'Antipasto', Arial, sans-serif;
}

.jobka-color {
    color: var(--jobka-color);
}

a.jobka-color:hover {
    color: var(--jobka-color);
}

/* Mobile devices - view without scrollbars */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
}

/* Background */
.background-img-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modification due to current font */
input::placeholder {
    overflow: visible;
}

/* Modification due to current font, bug on Safari */
input {
    transform: translateZ(0) !important;
}

/* Modification due to current font */
.form-control {
    line-height: 2rem !important;
    height: 2rem !important;
    padding-top: 0.7rem;
}

    .form-control:focus {
        border-color: var(--jobka-color);
    }

/* Modification due to current font */
.btn {
    padding-top: 6px !important;
    padding-bottom: 2px !important;
    letter-spacing: 0.05em;
}

.btn-pink {
    color: white;
    background-color: var(--jobka-color);
    border-color: var(--jobka-color);
}

    .btn-pink:hover,
    .btn-pink:focus,
    .btn-pink.focus {
        background-color: #CD0065;
        border-color: #CD0065;
        color: white;
    }

input[type=checkbox] {
    accent-color: var(--jobka-color);
}

/* Text in the left */
.login-box {
    margin-left: 9vw;
    margin-top: 16vh;
    color: white;
}

.login-box-welcome {
    font-weight: 600;
    font-size: 5.5em;
}

.login-box-description {
    font-size: 2.5em;
    font-weight: 400;
}

/* White box in the center */
.login-white-square {
    background: white;
    border-radius: 40px;
    padding: 18% 10%;
    margin: 0 auto;
    max-width: 80%;
}

.logout-white-square {
    border-radius: 40px;
    margin: 0 auto;
    max-width: 80%;
}

/* "Btns" for showing help and enter manually code */
.login-helper-btns a {
    background-color: var(--light-gray-color);
    font-size: 0.9em;
}

/* Logo in the right */
.login-logo-box {
    position: relative;
}

.login-logo-box-background {
    width: 12vw;
}

.login-logo-box-logo {
    position: absolute;
    top: 1vh;
    right: 35%;
    width: 10vw;
}

/* Error list */
.error-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Sweet alert */
.swal2-popup .swal2-styled:focus {
    box-shadow: none !important;
}

.swal2-html-container {
    font-size: 0.95em !important;
    line-height: 18px !important;
}

.swal2-popup {
    width: 50em !important;
}