@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: absolute;
    width: 100%;
    background-color: none;
    min-height: 100vh;
    overflow: hidden;
}

.forms-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.container::before {
    content: '';
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    background-image: linear-gradient(-45deg, #204cdb 0%, #2600bf 100%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 6;
    transition: 1.8s ease-in-out;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
    padding: 0 5rem;
    grid-column: 1 /2;
    grid-row: 1 / 2;
}

.title{
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
}

.input-field{
    max-width:120%;
    width: 120%;
    height: 55px;
    background-color: #f0f0f0;
    margin: 10px 0;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i{
    text-align: center;
    line-height: 55px;
    color: #acacac;
    font-size: 1.5rem;
}

.input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
   /* font-weight: 600; */
    font-size: 1.2rem;
    color: #333;
}

.input-field input:placeholder-shown{
    color: #aaa;
    font-weight: 500;
}

.butn{
    width: 150px;
    height: 49px;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #2641c5;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.5s;
    cursor: pointer;
}

.butn:hover{
    background-color: rgb(0, 23, 228);
  box-shadow: rgba(91, 91, 91, 0.479) 8px 9px 5px;
}

.social-text{
    padding: 0.7rem 0;
}

.social-media{
    display: flex;
    justify-content: center;
}

.social-icon{
    height: 46px;
    width: 46px;
    border: 1px solid #2641c5;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1.3rem;
    border-radius: 30%;
    transition: all 0.5s;
    
}

#facebook{
    color: #2641c5 ;
    background-color: white;
}
#twitter{
    color: #2641c5 ;
    background-color: white;
}
#google{
    /* color: #ff0000; */
    color: #2641c5 ;
  background-color: white;
}
#instagram{
    /* color: #ff0000; */
    color: #2641c5 ;
}

#facebook:hover{
    color: white;
    background-color: #2641c5 ;
}
#twitter:hover{
    background-color: #2641c5 ;
    color: white;
}

#google:hover{
    color: white;
    /* background-image: url(./source/google.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200%; */
    background-color: #2641c5 ;
    
}
#instagram:hover{
    /* background-image: url(./source/ig\ back.jpg);
    background-position: center;
    background-size: cover; */
    color: white;
    background-color: #2641c5 ;
    

}

#sign-up-button{
    color: white;
}

#sign-up-button:hover{
    background-color: white;
    color: black;
    cursor: pointer;
}

/*.social-icon:hover{
    color: rgba(0, 18, 176, 0.737);
    border-color:rgba(0, 18, 176, 0.737);
}*/

.signin-signup{
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%,-50%);
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

form.sign-in-form{
    z-index: 2;
}

form.sign-up-form{
    z-index: 1;
    opacity: 0;
}

.image{
    width: 120%;
    transition: 2s 0.1s ease-in;
    margin-top: 10%;
    background: none;
    
}

.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 17% 2rem 12%;
}
.right-panel{
    padding: 3rem 12% 2rem 17%;
}

.panel .content{
    color: rgb(255, 255, 255);
    transition: 0.9s 0.6s ease-in-out;
}

.panel h3{
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem; 
}

.panel p{
    font-size: 0.95rem;
    padding: 0.7rem 0;
}

.butn.transparent{
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

.right-panel .content, 
.right-panel .image {
    transform: translateX(800px);
}

/*Animation*/
/*
.container.sign-up-mode::before {
    transform: translate(2000px); 
    right: 52%;
}

/*
.container.sign-up-mode .left-panel .image,
.container.sign-up-mode .left-panel .content {
    transform: translate(-2000px); 
    right: 52%;
}

.container.sign-up-mode .right-panel .image,
.container.sign-up-mode .right-panel .content {
    transform: translateX(110%);
}

.container.sign-up-mode .left-panel{
    pointer-events: none;
}

.container.sign-up-mode .right-panel{
    pointer-events: all;
}

.container.sign-up-mode .signin-signup{
    left: 25%;
}

.container.sign-up-mode form.sign-in-form{
    z-index: 2;
    opacity: 1;
}

.container.sign-up-mode form.sign-up-form{
    z-index: 70;
    opacity: 1;
}
*/

body::after{
 transform: translate(1000px);
 transition: all 3s;
}
.forms-container{
    background-image: url(./source/ride-car.png);
    background-repeat: no-repeat;
    background-position: 55% 100% ;
    background-size: 30%;
}

#btn-blue{
    color: white;
    font-weight:600;
    background-color: #2600bf  ;
    box-shadow: rgba(0, 0, 0, 0.35) -5px 10px 10px;
}
#btn-blue:hover{
    color: white;
    font-weight:600;
    background-color: #2600bf  ;
    box-shadow: rgba(0, 0, 0, 0.35) -5px 15px 20px;
}

.tac{
    background: none;
    color: #333;
    text-decoration: none;
    
}
.link:hover {
    color: #3604ff;
}
.link{
    color: #333;
    text-decoration-line: none;
}