@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
}

body, input{
    font-family: 'Poppins', sans-serif ;
}

.container{
    position: relative;
    width: 100%;
    background-color: rgb(26, 26, 26);
    min-height: 100vh;
    overflow: hidden;
}

.container::before{
    content: '';
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 40%;
    background-image: linear-gradient(-45deg,#FFB602 0%, #FFB602 100%);
    transform: translateY(0%);
    border-radius: 50%;
    z-index: 6;
    transition: 1.8s ease-in-out;
}


.forms-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 0 5rem;
}

.title{
    font-size: 2.5rem;
    color: aliceblue;
    margin-bottom: 10px;
}

.input-field{
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: #d4ecff;
    margin: 10px 0;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i{
    text-align: center;
    line-height: 55px;
    color: #686868;
    font-size: 1.3rem;
}

.input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1rem ;
    color: black;
}

.input-field input:placeholder-shown{
    color: blueviolet;
    font-weight: 500;
}

.btn{
    width: 150px;
    height: 49px;
    outline: none;
    border: none;
    border-radius: 20px;
    background-color: #fac849;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.5s;
}

.btn:hover {
    background-color: #FFB602;
    font-size: 1.1rem;
    cursor: pointer;
}

.social-text{
    color: aliceblue;
}

.social-media{
    display: flex;
    justify-content: center;
}

.social-icon{
    height: 46px;
    width: 46px;
    border: 1px solid #fac849;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fac849;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: all 0.5s;
}

.social-icon:hover{
    color: aqua;
    border-color: aqua;
    font-size: 1.7rem;
    transition: 0.1s;
}

.signin-signup{
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}


.image{
    width: 80%;
}

.logo{
    width: 15%;
}

.panels-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 7;
}

.left-panel{
    padding: 3rem 12% 2rem 12%;
}

.right-panel{
    padding: 3rem 17% 2rem 12%;
}

.panel .content{
    color: black;
}

.panel h3{
    color: #173d7a;
    font-weight: 600;
    line-height: 1;
    font-size: 2.5rem;
}

.panel p{
    font-size: 1.1rem;
    padding: 0.7rem 0;
}

.panel button{
    margin: 0;
    background: none;
    border: 2px solid rgb(6, 7, 7);
    color: black;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

.panel button:hover{
    margin: 0;
    background: black;
    border: 3px solid rgb(253, 255, 255);
    color: rgb(255, 255, 255);
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}












































































