@font-face {
    font-family: 'LexendMedium';
    src: url('/fonts/Lexend-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'LexendBold';
    src: url('/fonts/Lexend-Bold.ttf') format('truetype');
}

:root {
    --bs-danger-rgb: 190, 62, 85;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-image: linear-gradient(90deg, rgba(190,62,85,1) 45%, rgba(190,62,85,0.4) 73%, rgba(190,62,85,0.4) 84%, rgba(190,62,85,0.6) 100%), url(/images/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'LexendMedium', Arial, Helvetica, sans-serif;
    color: #A3A1C3;
    font-size: 18px;
}

.form-box-container {
    background-color: #1E1E28;
    border-radius: 10px;
    border-width: 1px;
    border-color: #A3A1C3;
    margin-left: 10%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 70px;
    width: 50%;
}

.logo-header {
    margin-bottom: 50px;
}

    .logo-header p,
    .logo-header h1 {
        margin: 0px;
    }

        .logo-header p > span {
            color: white;
            white-space: pre;
        }

        .logo-header h1 > span {
            color: #A3A1C3;
        }

.logo {
    width: 75px;
    height: 75px;
}

h1 {
    color: white;
    font-size: 48px;
    font-family: 'LexendBold', Arial, Helvetica, sans-serif;
}

form {
    margin-top: 50px;
}

.control-label {
    text-transform: uppercase;
    font-size: 16px;
}

input[type=email].acota-form-control {
    background-color: #1E1E28;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px #A3A1C3 solid;
    border-radius: 0px;
    color: white;
    padding-left: 0px;
}

    input[type=email].acota-form-control:focus,
    input[type=email].acota-form-control.valid:focus {
        border-bottom: 1px #E78D37 solid;
        color: white;
        box-shadow: none;
        outline: none;
    }

        input[type=email].acota-form-control:focus ~ label,
        input[type=email].acota-form-control.valid:focus ~ label {
            color: #E78D37;
        }

    input[type=email].acota-form-control.valid {
        border-bottom: 1px white solid;
    }
        input[type=email].acota-form-control.valid ~ label {
            color: white;
        }

    input[type=email].acota-form-control.input-validation-error {
        border-bottom: 1px #BE3E55 solid;
    }

        input[type=email].acota-form-control.input-validation-error ~ label {
            color: #BE3E55;
        }

input[type=submit] {
    width: 100%;
    background-color: #E78D37;
    color: #1E1E28;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    margin-top: 30px;
    padding: 15px;
}

    input[type=submit]:hover {
        background-color: white;
        color: #1E1E28;
    }

.highlight {
    color: white;
}

.small-text {
    font-size: 16px;
}