*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main{  
    display: flex;
    padding: 0px 40px;
    justify-content: space-around;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid rgb(204, 204, 204);
}
.main-detail{
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
}
.main-detail > .icon-logo i{
    /* color: #ff342d; */
    font-size: 7em;
    background: linear-gradient(130deg, 
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,   
    #cc2366 75%,
    #bc1888 100%
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-info {
    margin:10px 140px;
    width: 70%;
    text-align: center;
    line-height: 60px;
}
.main-info > p{
    font-size: 2em;
    letter-spacing: 2px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
.main-detail > .main-info img{
    width: 400px;
}
.line{
    border-top: none;
    border-bottom: none;
    border-right: none;
    padding-right: 70px;
    border-left: 3px solid rgb(204, 204, 204);
}
.form-details{
    width: 45%;
    padding: 120px 0px ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.form-details > h4{
    margin-bottom: 20px;
}
.sign-in-form{
    margin-bottom: 60px;
}
.sign-in-form > input, .sign-in-form > button, .options > button{
    display: block;
    width: 100%;
    border: 1px solid rgb(197, 196, 196);
    border-radius: 15px;
    padding: 18px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}
.sign-in-form > input:focus{
    font-size: 12px;
    /* border: 1px solid rgb(197, 196, 196); */
    outline: none;
}
.sign-in-form > button{
    background-color: #3f7dc58d;
    border-radius: 45px;
    padding: 10px 15px;
    color: #fff;
}

.sign-in-form > a{
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}
.sign-in-form > a:hover{
    background-color: rgb(231, 229, 229);
    padding: 10px 0px;
    text-align: center;
    border-radius: 15px;
} 
.options{
    text-align: center;
}
.options > button{
    width: 100%;
    border: 1px solid rgb(197, 196, 196);
    border-radius: 15px;
    padding: 10px 15px;
    margin-bottom: 20px;
    background-color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.options > button i{
    color: blue;
}

.options > button:hover, .new-acc:hover{
    background-color: rgb(231, 229, 229);
}
.new-acc{
    width: 100%;
    cursor: pointer;
    border: 1px solid rgb(60, 14, 242);
    text-align: center;
    border-radius: 15px;
    padding: 10px 15px;
    margin-bottom: 20px;
    background-color: white;
    font-size: 16px;
    font-weight: 600;
}
.new-acc a, .options > .icon-meta i{
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.options > .icon-meta{
    width: 100%;
    cursor: pointer;
    text-align: center;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}
.options > .icon-meta i{
    color: blue;
}
.options > .icon-meta i span{
    color: black;
    font-size: 17px;
}
footer{
    margin: 10px auto;
}
.nav-foot ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.nav-foot ul li{
    list-style: none;
}
.nav-foot ul li a{
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: lighter;
}
.nav-foot ul li a:hover{
    text-decoration: underline;
}
.language{
    display: flex;
    margin-top: 30px;
    margin-bottom: 40px;
    justify-content: center;
    gap: 30px;
}
.language > select{
    border: none;
}

@media (max-width : 798px){
    .main{
        width: 100%;
        flex-direction: column;
        border: none;
        /* padding: 20px 40px; */
    }
    .main-info, footer{
        display: none;
    }
    .main-detail > .icon-logo i{
        margin-left: 100px;
        text-align: center;
        font-size: 5em;
    }
    .form-details{
        width: 100%;
        margin: auto;
        padding: 10px 0px;
    }
}