@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;
    font-family: "Roboto Condensed", sans-serif;
}


.login {
    width: 100%;
    background-image: linear-gradient(#8a4e00, #116257);
    display: flex;
    justify-content: center;
    height: 100vh;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 315px;
    max-width: 90%;
    margin: 15% auto;

}

.logo-box {
    max-width: 94%;
    width: 100%;
    margin: 0 auto 15px;
}

.form-box {
    background-color: #fff;
    border-radius: .2rem;
    padding: 15px 20px;
}

.form-box h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8a4e00;
    margin-bottom: .5rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.form-box .input-field {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.form-box .input-field img {
    position: absolute;
    right: 10px;
    top: 10px;
}

.form-box .input-field input {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-box .input-field input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #007bff40;
}
button{
    cursor:pointer;
}

.form-box .btn-box button {
    width: 100%;
    display: block;
    color: #fff;
    background-color: #8a4e00;
    font-weight: 400;
    text-align: center;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    margin-bottom: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-box .btn-box button:last-child {
    margin-bottom: 0rem;
}

.form-box .btn-box button img {
    float: right;
}

small {
    font-size: 13px;
    font-weight: 400;
}

small a {
    color: #007bff;
}

a {
    text-decoration: none;

}

a:hover {
    text-decoration: underline;
}

a.email {
    display: block;
    line-height: 2;
    text-align: center;
    margin-top: .25rem !important;
    color: #007bff;
    background-color: transparent;
}


.social-box {
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 1px dashed #8a4e00;
    margin-top: 10px;
    padding-top: 5px;
}

.social-box>a {
    text-decoration: none;
    align-items: center;
    margin: 0 3%;
    color: #000;
    display: flex;
    justify-content: center;
}

.social-box>a>span {
    font-size: 14px;
    font-weight: 900;
    margin-left: 5px;
    color: #000;
    text-transform: uppercase;
}

.loginText {
    text-align: center;
    font-size: 17px;
    color: #111;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}



#getNewId {
    display: block;
    padding: 10px 49px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 25px;
    color: white;
    background: #8a4e00;
    max-width: 90%;
    width: 100%;
    margin: 4px auto;
    text-align: center;
}