@font-face {
    font-family: Gravity-Regular;
    src: url('/webfonts/Gravity-Regular.otf');
}
@font-face {
    font-family: Gravity-Bold;
    src: url('/webfonts/Gravity-Bold.otf');
}
@font-face {
    font-family: Gravity-Light;
    src: url('/webfonts/Gravity-Light.otf');
}
@font-face {
    font-family: Gravity-Book;
    src: url('/webfonts/Gravity-Book.otf');
}

*{
    font-family: Gravity-Regular;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.login__nav{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #04A198;
    
}

.login__navLinks {
    width: 30%;
    display: flex;
    margin-left: 36px;
}

.login__navLinks > a {
    text-decoration: none;
    color: #04A198;
    position: relative;
    top: 14px;
    left: 16px;
    background-color: transparent;
}

.login__navLinks > i {
    display: none;
}

.login__navLinks > span{
    display: flex;
    position: relative;
    top: 13px;
    left: 16px;
    margin: 0 8px;
    background-color: transparent;
}

.login__navLinks > img {
    width: 50px;
    height: 50px;
    position: relative;
    background-color: transparent;
}

.login__menu{
    display: none;
}

.login__menuLogo > img{
    display: none;
}

.login__navSocial {
    width: 20%;
    margin-right: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login__navSocial a > i{
    font-size: 24px;
    color: #04A198;
}

section{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login__form{
    color: #04A198;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}

.login__form > h1 {
    font-family: Gravity-Bold;
    font-size: 48px;
    margin-bottom: 16px;
    word-spacing: 12px;
    text-transform: uppercase;
}

.login__form > a {
    font-family: Gravity-Light;
    font-size: 14px;
    color: black;
    text-decoration: solid black;
    letter-spacing: 2px;
}

.login__formInput {
    width: 50%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.login__formInput > input {
    height: 50px;
    border: solid black 2px;
    margin: 20px 0;
    padding-left: 12px;
}

.login__formInput > input::placeholder {
    color: #C6C2C8;  
    font-family: Gravity-Light;
}

.login__formInput > label{
    color: #000;
    font-family: Gravity-Light;
    position: relative;
    top: 50px;
}

.login__formInput > label > .login__formCheck{
    color: red;  
    font-family: Gravity-Light;
    margin: 0 20px 0 10px;
    cursor: pointer;
    transform: scale(3);
    position: relative;
}

.login__formInput > span {
    align-self: flex-end;
    margin-bottom: -15px;
    text-decoration: solid 1px;
}

.login__formInput > div> button {
    margin-top: 140px;
    appearance: button;
    width: 200px;
    text-transform: uppercase;
    background-color: #04A198;
    border: 1px solid #04A198;
    box-shadow: #fff 4px 4px 0 0,#04A198 4px 4px 0 1px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: ITCAvantGardeStd-Bk,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 140px 5px 10px 0;
    overflow: visible;
    padding: 12px 40px;
    text-align: center;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.login__formInput > div> button:focus {
  text-decoration: none;
}

.login__formInput > div> button:hover {
  text-decoration: none;
}

.login__formInput > div> button > i {
  background-color: transparent !important;
}

.login__formInput > div> button:active {
  box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
  outline: 0;
}

.login__formInput > div> button:not([disabled]):active {
  box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
  transform: translate(2px, 2px);
}

.login__social{
    width: 70%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}

.login__social > a > h4{
    font-family: Gravity-Bold;
    color: black;
}

.login__social > h4> a:visited{
    color: black;
}

.login__social > h4{
    font-family: Gravity-Light;
    margin-bottom: 24px;
}

.login__socialButton{
    display: flex;
    
}

.login__socialButton > a {
    width: 250px;
    height: 50px;
    margin-right: 10px;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    background-color: #fff;
    border: 2px solid black;
    color: #A09AA4;
    text-decoration: none;
}

.login__socialButton > a > span{
    text-decoration: none;
}

.login__socialButton > a > img{
    width: 36px;
}

footer{
    background-color: #fff;
    color: #000;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    position: relative;
    bottom: 0;
}

.login__footer{
    display: flex;
    align-items: center;
    margin: 0 150px;
}
.login__footer > a {
    color: #000; 
    text-decoration: none;
    margin: 6px;
}

.login__footer > img {
    width: 80px;
    margin-right: 16px;
}

@media screen and (max-width: 1000px) {
    .login__formInput {
        width: 80%;
    }
}

@media screen and (max-width: 700px) {
    .login__form > h1{
        font-size: 36px;
    }
    .login__formInput {
        width: 80%;
    }

    .login__socialButton{
        flex-direction: column;
    }
    .login__socialButton > a{
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 500px){
    .login__navLinks{
        display: none;
        margin: 0;
    }

    .login__menuLogo > img{
        display: block;

    }

    .login__navLinks.active{
        background-color: #04A198;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transform: translate(0);
    }

    .login__navLinks.active > a{
        color: white;
        left: 0;
    }

    .login__navLinks > i{
        color: #fff;
        display: block;
        position: absolute;
        font-size: 52px;
        top: 5%;
        right: 10%;
        background-color: transparent;
    }
    .login__menu{
        display: inline-block;
        font-size: 40px;
        margin: 32px;
    }

    .login__formInput > label {
        width: 120%;
    }

    .login__navSocial {
        width: 35%;
    }

    footer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .login__footer{
        width: 100%;
        justify-content: center;
        align-content: center;
    }

    .login__footer > a{
        text-align: center;
    }

}