@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 16px;
    cursor: default;
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: linear-gradient(#000000, #291919);
}

.log-form-box {
    margin: 2% 0;
    width: 350px;
    max-width: 90%;
    text-align: center;

}

.logo-box img {
    max-width: 100%;
    max-height: 70px;
}

.form-box {
    padding-top: 10px;
    margin-top: 1.5rem;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 5px #fff;
}

.form-box>h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
}

.form-box>h4>img {
    height: 21.6px;
    position: relative;
    bottom: -3px;
}

.form-box form {
    padding: 10px;
    width: 100%;
}

.form-box form .input-field {
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;

}

.form-box form .input-field input {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
    border-radius: 0;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #dbdbdb;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -ms-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-box form .input-field span {
    display: flex;
    align-items: center;
    padding: .1rem .5rem;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-left: 0;
    border-radius: 0rem .25rem .25rem 0rem;
    -webkit-border-radius: 0rem .25rem .25rem 0rem;
    -moz-border-radius: 0rem .25rem .25rem 0rem;
    -ms-border-radius: 0rem .25rem .25rem 0rem;
    -o-border-radius: 0rem .25rem .25rem 0rem;
}


.form-box form .input-field button {



    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;

    border-radius: 0;

    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
}
.form-box form .input-field button:hover {
    cursor: pointer;
    opacity: 0.9;
}


.form-box form .input-field button i {
    float: right;
    padding-top: 4px;
}

.form-box form .input-field.button {
    margin-bottom: 0;
}

.register {
    text-align: center;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    font-size: 12px;
}

.register a {
    text-decoration: none;
    color: #0d6efd;
}

small.recaptcha {
    font-size: 10px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer h2{
    font-size: 20px;
    text-align: center;
    margin-top: 15px;
}
.footer a{
    display: block;
    text-decoration: none;
    margin-top: 15px;
    text-align: center;
}

.footer a span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.footer a span img{
    height: 20px;
}