@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #66BFBF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;

}

.container {
    background:#EEEEEE;
    width: 400px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;


}

.signin,
.signup {
    width: 400px;
    height: 500px;
    justify-content: center;
    display: flex;
    margin: 0;
    align-items: center;
    flex-direction: column;
    transition: 1s ease-in-out;
}

.input_container {
    width: 100%;
    margin-top: 30px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.wrapper form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;


}

h1 {
    color: #373A40 ;
    font-style: bold;
    font-weight: 400px;
    
}

.signin_user,
.signin_pass {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;

}

.input_icons {
    font-size: 20px;
    color: white;
    -webkit-text-stroke: black;
-webkit-text-stroke-width: 1px;
}

.signin_input,
.signup_input {
    width: 320px;
    height: 30px;
    margin: 10px;
    padding: 10px;
    border: 0;
    outline: none;
    font-size: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}


.signup_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.btn {
    margin: 5px;
    width: 70%;
    height: 40px;
    border-radius: 50px;
    border: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    font-size: 1rem;
    font-weight: bold;
}

.btn:hover {
    color: white;
    background: radial-gradient(circle, rgba(182, 174, 238, 1) 0%, rgba(148, 187, 233, 1) 100%);
    transition: 1s;
}

.social_icons {
    height: auto;
    display: space-between;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.social_icons i {
    margin-top: 15px;
    margin-right: 5px;
    width: 50px;
    height: 40px;
    font-size: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: black;
}

input[type=checkbox] {
    transform: scale(1);
    margin: 5px;
}


.social_icons a {
    text-decoration: none;
}

.social_icons i:hover {
    background-color: black;
    color: white;
    transition: 1s;
}

.s_with {
    margin-top: 20px;
}

.forgot {
    text-decoration: none;
    color: black;
}

.f {
    margin-top: 10px;
}

.already {
    margin-top: 10px;
}


.forgot:hover {
    color: white;
}


.wrapper.active .signin {
    transform: translateY(-500px);
}

.wrapper .signup {
    position: absolute;
    top: 500px;
}

.wrapper.active .signup {
    transform: translateY(-500px);
}

.back{
    position: fixed;
    top: 20px;
    left: 10px;
    font-size: 30px;
    width: 60px;
    height: 60px;
    background:#EEEEEE;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
    color: #373A40 ;
    box-shadow: 0 5px 15px rgba(0,0,0,0.65);
    transition: 0.2s;
    position: fixed;
}

.back:hover{
    color: #EEEEEE;
    background: #373A40;
}
a{
    -webkit-tap-highlight-color: transparent; 
}