@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 7px;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #000000;
}
.login{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo{
    display:flex;
    align-items: center;
    flex-direction: column;
}
.logo img{
    width: 2.5vw;
   background-color: white;
   filter: invert();
}
.logo h1{
    color: white;
}
.buttons{
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buttons button{
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    border: 1px solid rgb(81, 81, 81);
    border-radius: 50px;
    padding:0 0 0 1rem;
    gap: 30px;
    cursor: pointer;
    height: 43px;
    font-size: 11px;
 
}

.apple{
    width: 1.3vw;
    filter: invert();
}
.google{
    width: 1.3vw;
}
.facebook{
    width: 1.3vw;
}
.appl{
    width: 1.3vw;
}
.bw {
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.bw input {
    color: white;
    background-color: black;
    border: 1px solid rgb(81, 81, 81);
    width: 18.5vw;
    height: 45px;
    border-radius: 2px;
    padding: 5px;
    
}

.bw input::placeholder {
    padding: 9px;
}

.bw button {
    background-color: #25d26a;
    font-weight: 600;
    height: 2.5rem;
    border-radius: 50px;
    border: none;
}

.already {
    display: flex;
    margin-top: 1rem;
}

.already p {
    font-size: 12px;  
    color: white;
}

.already a {
   font-size: 12px;
    color: white;
}

.back {
    color: white;
    background-color: rgb(186, 0, 242);
    width: 10rem;
    height: 3rem;
    margin-top: 1rem;
    border-radius: 50px;
    border: none;
}
@media (max-width:1400px) {
    .logo img{
        width: 5vw;
    }
    .buttons{
        width: 40vw;
    }
    .apple{
        width: 2.5vw;
    }
    .google{
        width: 2.5vw;
    }
    .facebook{
        width: 2.5vw;
    }
    .phone{
        width: 2.5vw;
    }
    .bw input{
        width: 38vw;
    }
}

@media (max-width:670px) {
    .logo img{
        width: 8vw;
    }
    .buttons{
        width: 65vw;
    }
    .apple{
        width: 6vw;
    }
    .google{
        width: 6vw;
    }
    .facebook{
        width: 6vw;
    }
    .phone{
        width: 6vw;
    }
    .bw input{
        width: 60vw;
        height: 58px;
    }
    .back{
        width: 26vw;
        height: 45px;
    }
    .buttons button{
        height: 48px;
    }
}
