@font-face {
    font-family: 'Roboto';
    src: url("RobotoSlab-VariableFont_wght.ttf");
}
@font-face{
    font-family:'ipacct';
    src: url('/public/css/ipacct.ttf');
}

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

*:focus {
    outline: none;
}


body {
    background-color: #faf9fd;
}

.main_container {
    width: 30%;
    margin: auto;
    text-align: center;
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding-bottom: 2vh;
    background-color: white;
    box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.32);
}

img {
    max-width: 100%;
    max-height: 100px;
    margin: 0;
    padding: 0;
}
.ipacct_start_color {
    font-family: IPACCT;
    color: #1d2168;
}

.ipacct_end_color {
    font-family: IPACCT;
    color: #ce0000;
}

.input_container {
    width: 80%;
    text-align: left;
    margin: 1em auto;
}

.input_container p {
    margin-bottom: 3px;
}

.captcha {
    width: 100%;
    text-align: left;
    height: 8vh;
    border: 1px solid darkgrey;
}

.input_container input {
    width: 100%;
    border: 1px solid darkgrey;
    font-size: 1em;
    padding: 0.5em;
    border-radius: 4px;
}

.input_container input:focus {
    border: 1px solid #1d2168;
}

.input_container .submit {
    background-color: #1d2168;
    color: white;
    border: none;
    margin-top: 2vh;
    padding: 0.6em;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
}

.input_container .submit:hover {
    background-color: #6ba8e7;
}

.firm_text {
    font-size: 0.5em;
    padding: 0;
    margin: 0;
}

h1 p {
    margin: 0.2em;
    padding: 0.2em;
}

.zerom {
    margin: 0 auto;
    padding: 0;
    width: 80%;
}

.footer {
    text-align: center;
    font-family: ipacct;
}

.terms {
    margin: auto;
    width: 30%;
    display: flex;
    justify-content: space-around;
}

.terms a, .terms p {
    text-decoration: none;
    font-weight: 300;
    color: #1d2168;
}

.terms a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1280px) {
    body {
        background-color: white;
    }
    .main_container {
        width: 60%;
    }
    .terms {
        width: 60%;
    }
    .input_container {
        width: 90%;
    }
    .captcha {
        height: 12vh;
    }
}

@media screen and (max-width: 1024px) {
    body {
        background-color: white;
    }
    .main_container {
        width: 60%;
        border: none;
    }
    .terms {
        width: 60%;
    }
    .input_container {
        width: 90%;
    }
    .captcha {
        height: 12vh;
    }
    .zerom {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    body {
        background-color: white;
    }
    .zerom {
        width: 90%;
    }
    .main_container {
        width: 100%;
        border: none;
        box-shadow: none;
    }
    .terms {
        width: 100%;
    }
    .input_container {
        width: 90%;
    }
    .captcha {
        height: 12vh;
    }
    h1 img {
        width: 100%;
    }
    .auth_form_logo {
        width: 100%;
    }
    .firm_text {
        font-size: 0.4em;
    }
}
