@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    background: #444e5a;
}
.loginBox{
    background: #FFF;
    text-align: center;
    border-radius: 10px;
    padding: 30px 120px;
    width: 550px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.logo{
    width: 30px;
    margin-bottom: 20px;
}
.loginBox .carpi{
    position: absolute;
    left: 25px;
    width: 15px;
    cursor: pointer;
}
.loginBox h2{
    margin-bottom: 20px;
}
.loginBox button{
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #999;
    font-weight: 500;
    cursor: pointer;
}
.loginBox button img{
    width: 18px;
    margin-right: 10px;
}
.loginBox button h3{
    font-weight: 600;
}
.loginBox #apple:hover{
    background: #dfdcdc;
    transition: .2s ease-in;
}
.loginBox #next{
    font-size: 15px;
    font-weight: 600;
}
.loginBox #next:hover{
    background: #252525;
    transition: .2s ease-in;
}
.loginBox #forget{
    font-size: 15px;
    font-weight: 600;
}
.loginBox #forget:hover{
    background: #dfdcdc;
    transition: .2s ease-in;
}
.loginBox span{
   display: block;
   width: 40px;
   margin: auto;
   background: #FFF;
   font-size: 16px;
   margin-top: -16px;
}
.loginBox input{
    width: 100%;
    background: transparent;
    border: 1px solid #c4c2c2;
    outline: none;
    padding: 20px 10px;
    border-radius: 4px;
    margin: 10px 0;
}
.loginBox input::placeholder{
    font-weight: 300;
    color: #333;
    font-size: 17px;
}
.loginBox input:focus::placeholder{
    font-size: 12px;
    top: 2px;
    text-align: start;
    transition: all ease-in;
    color: #2e93e6;
}
.loginBox form button{
    background: #000;
    color: #FFF;
    border: none;
    margin-bottom: 15px;
}
.loginBox .hesap{
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-align: left;
    font-size: 14px;
    margin: 40px 0 50px;
}
.loginBox .hesap a{
    text-decoration: none;
    color: #2e93e6;
}
.cikis{
    display: none;
}