
@font-face {
    font-family: "Nyala";
    src: url(../fonts/nyala_regular.ttf);
}
@font-face {
    font-family: "Redonda_Light";
    src: url(../fonts/RedondaTest-Light.otf);
}
@font-face {
    font-family: "Redonda_Medium";
    src: url(../fonts/RedondaTest-Medium.otf);
}
@font-face {
    font-family: "Redonda_Regular";
    src: url(../fonts/RedondaTest-Regular.otf);
}
@font-face {
    font-family: "Redonda_Bold";
    src: url(../fonts/RedondaTest-Bold.otf);
}
/* {
    font-family: "Nyala";
    font-family: "Redonda_Light";
    font-family: "Redonda_Medium";
    font-family: "Redonda_Regular";
    font-family: "Redonda_Bold";
} */

body{
    padding: 0;
    margin: 0;
    font-family: "Redonda_Regular";
    background-color: #000000;
}
.accounts_main{
    display: flex;
    align-items: center;
}
.accounts_left_img{
    width: 70%;
    height: 100vh;
    background-image: url(../img/accounts.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.accounts_right{
    width: 30%;
    padding: 20px;
}
.accounts_card_body {
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.accounts_inputs{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accounts_inputs input{
    width: 100%;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF33;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
}
.accounts_inputs input::placeholder{
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
}
.accounts_inputs button{
    background: #814B7D;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
}
.acnts_p{
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    margin-top: 10px;
}
.acnts_p a{
    color: #FF8600;
    text-decoration: none;
}
.acnts_p2{
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 10px;
    margin-top: 40px;
    text-align: center;
}
.accounts_icons{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.accounts_icons i{
    color: #FFFFFF;
    font-size: 22px;
}
@media (max-width: 992px){
    .accounts_main{
        width: 100%;
        min-height: 100vh;
        background-image: url(../img/accounts.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .header_inner_main{
        padding: 0px 0px;
    }
    .accounts_left_img{
        display: none;
    }
    .accounts_right{
        width: 100%;
        position: relative;
    }
    .accounts_card_body{
        background-color: #000000;
        padding: 30px 15px;
        border-radius: 8px;
    }
}