/* HEADER  */
.header{
    background: var(--bg-1);
    padding: 19px 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .inner-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .inner-header .inner-logo{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .inner-header .inner-logo img{
    width: 48px;
    height: 48px;
    margin-right: 30px;
}

.header .inner-header .inner-logo a{
    font-size: 24px;
    font-weight: 700;
    color: #232323;
}

.header .inner-header .inner-nav ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    padding-left: 20px;
}

.header .inner-header .inner-nav ul li{
    margin-right: 32px;
}

.header .inner-header .inner-nav ul li a{
    color: #232323;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 4px solid transparent;
}

.header .inner-header .inner-button{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .inner-header .inner-button .button-one{
    margin: 0 9.6px;
    padding: 16px 25px;
    border: 1px solid #E2E3E9;
    border-radius: 45px;
    font-size: 18px;
    color: #14142b;
}

.header .inner-header .inner-button .button-two{
    margin: 0 9.6px;
    padding: 16px 25px;
    border: 2px solid #FEDB01;
    border-radius: 45px;  
    font-size: 18px;
    color: #14142b;
    background: #FEDB01;
}

.header .inner-header .inner-logo a:hover{
    color: #3F69FF;
}

.header .inner-header .inner-nav ul li a:hover{
    border-color: #14142B;
    color: #14142B;
    transition: all 0.5s;
}

.header .inner-header .inner-button .button-one:hover{
    background: #E2E3E9;
    transition: all 0.5s;
    transform: scale(1.1);
}

.header .inner-header .inner-button .button-two:hover{
    background: #14142b;
    transition: all 0.5s;
    color: #ffffff;
    border-color: #14142b;
    transform: scale(1.1);
}

/* END HEADER  */

/* SIGN UP  */
.sign-up{
    margin-top: 150px;
    padding-top: 50px;
}

.sign-up .inner-wrap{
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px;
    border: 1px solid #000000;
    border-radius: 15px;
    background: #fff;
    text-align: center;
}

.sign-up .inner-wrap .inner-title{
    margin-top: 0;
    margin-bottom: 40px;
}

.sign-up .inner-wrap .inner-form {
    margin-bottom: 20px;
}

.sign-up .inner-wrap .inner-form input{
    display: block;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 45px;
    margin-bottom: 10px;
    font-size: 18px;
}

.sign-up .inner-wrap .inner-button .sign-button{
    display: block;
    padding: 12px 50px;
    font-size: 18px;
    line-height: 27px;
    border: 2px solid #14142B;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 45px;
    text-align: center;
    color: #14142B;
    margin-bottom: 10px;
    font-weight: 700;
}

.sign-up .inner-wrap .inner-button .sign-button:hover{
    background: #14142B;
    color: #ffffff;
}

.sign-up .inner-wrap .sign-button{
    font-size: 18px;
}


.sign-up .inner-wrap .inner-social .inner-icon{
    max-width: 25%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.sign-up .inner-wrap .inner-social .inner-icon i{
    font-size: 28px;
    color: blue;
}

.sign-up .inner-wrap .inner-social .inner-icon .icon{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sign-up .inner-wrap .inner-social .inner-icon .icon:hover{
    background: #747070;
}
/* END SIGN UP  */
