@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* AUTOCOMPLETE */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 2px solid #414042;
    -webkit-text-fill-color: black;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color all 300ms ease-out 0s;
}

* {
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif !important;
}

body {
    background-color: white;
    background-image: none;
}

#admin_wrapper {
    background-color: #fff;
    border: 1px solid #fff;
    margin: auto;
    /*padding-top: 8%;*/
}
#admin_wrapper form select {
    padding: 10px;
    margin: 20px;
    font-size: 22px;
    line-height: 24px;
}
#admin_wrapper form select option {
    margin-bottom: 6px;
}
#logo {
    margin: 30px auto 0;
    width: 100%;
    height: 60px;
    background: url('https://secure.activecarrot.com/media/dynamic/static_images/1433/City-of-Gold-Coast-Logo-160w.png') no-repeat;
}
.customer_login_message {
    font-size: 44px;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto 30px;
    color: #414142;
}
.customer_login_message>div {
    float: left;
}
.customer_login_message:after {
    clear: both;
    content: "";
    display: table;
}
.customer_login_message>div.identifierBold {
    font-weight: bold;
    margin-right: 6px;
}

/** Login Form **/
form {
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    border-radius: 4px;
    border-top: 1px solid #ffffff;
    box-shadow: 0 12px 22px 0 rgba(0, 0, 0, 0.25);
    margin: 0 auto;
}
form p {
    display: flex;
    flex-direction: column;
    margin: auto;
}
form p:first-of-type {
    margin-top: 30px;
}
form label {
    color: #414142;
    margin: 16px 0 5px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}
form .input {
    border: 1px solid #bbb;
    border-radius: 5px;
    height: 48px;
    width: 300px;
    background-color: #fff;
    outline: none;
    font-size: 1.7rem;
    color: #333;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%) inset important !;
}
form .button {
    border: none;
    border-radius: 4px;
    margin: 10px auto;
    background: #007a8a;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 2rem;
    padding: 10px 50px;
}
form .button:hover {
    background: rgba(3, 130, 147, 0.6);
    transition: all 300ms ease-out 0s !important;
    color: #fff;
    cursor: pointer;
}
.fail {
    font-size: 15px;
    text-align: center;
    font-weight: normal;
    border-radius: 4px;
    border: none;
    height: 100%;
    width: 90%;
    margin: 15px auto;
    padding: 15px;
    color: #fff;
    background-color: #c4004b;
}
.forgot_password p {
    text-align: center;
    padding: 0 !important;
}
.forgot_password p a {
    order: 2;
    margin: 30px 0;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 600;
    color: #007a8a;
}
.forgot_password p a:hover {
    text-decoration: underline;
}

@media (min-width: 280px) {
    body {
        margin: 0;
    }
    #admin_wrapper {
        padding: 0 20px;
        width: 100%;
        margin-top: 0;
    }
    form p {
        width: 85%;
        margin: 0 auto;
        padding: 0;
    }
    form label {
        font-size: 1.5rem;
    }
    form .input {
        width: 100%;
        font-size: 1.5rem;
    }
}
@media (min-width: 801px) {
    #admin_wrapper {
        padding-top: 8%;
    }
    form p {
        width: 300px;
    }
}
@media (min-width: 801px) and (min-height: 600px) {
    body {
        margin-top: 0px;
    }
    #admin_wrapper {
        width: 600px;
        padding-top: 0;
    }
}
@media (min-width:1025px) {
    #admin_wrapper {
        padding-top: 8% !important;
        width: 600px
    }
}