@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');


body {
    margin: 0;
    padding: 0;
    width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.84), rgb(0, 0, 0));
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.login {
    background: linear-gradient(360deg, rgba(163, 163, 163, 0.1) 0%, rgb(10, 10, 10, 1) 100%, rgb(10, 10, 10, 1) 100%);
    height: 100vh;
    width: 500px;
    margin: 30px 30% 0 35%;
    padding: 2.5% 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 8px;
}

a {
    color: white;
}

.url a {
    text-decoration: none;
}

.spotify-logo{
    margin-left: -45px;
    padding-top: 25px;
    position: absolute;
    background: transparent;
    width: 68%;
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.spotify-logo h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: -5px;
    width: 90%;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.spotify-logo p{
    margin-left: 20px;
}

.info{
    background:transparent;
    display: flex;
    flex-direction: column;
}

.input-box{
    position: absolute;
    display: flex;
    flex-direction: column;
    margin: 180px 0px 0px -170px;
    width: 100%;
    font-size: 0.9rem;
    font-weight:600;
    gap: 10px;
}
.input-box input{
    background:transparent;
    border:1px solid rgb(132, 132, 132);
    padding-left:10px;
    border-radius: 4px;
    height: 6vh;
    color: white;
    font-size: 1rem;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.input-box input:hover{
    border: 1px solid white;
}
.input-box input::placeholder {
    font-size: 1rem;
}
/* .email{
    margin-left: -87px;
 }  */


.btn {
    background-color: #1ed760;
    padding:15px 0px;
    width: 64%;
    height:7vh;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
}

.btn:hover {
    border: none;
    cursor: pointer;
    transform:scale(1.05);
    transition: all ease 0.1s;
    background-color: #3ae576;
}

.account{
    margin-top:20px;
    font-size: 0.95rem;
    margin-left: 75px;
    color:rgb(190, 190, 190);
}

.account a:hover{
    color: #1ed760;
}

.forget a {
    color: #1ed760;
    margin: 150px 0px 0px -74px;
}

.forget{
    height: 5vh;
    margin-top: 15px;
    /* margin-left: 90px; */
}

footer{
    margin-top: 600px;
    position: absolute;
    background-color: transparent;
    height: 15vh;
    width: 60%;
    display: block;
    align-content: center;
    align-items: center;
    /* margin-left: 20px; */
    text-align: center;
    font-size: 0.75rem;
    color:rgb(190, 190, 190);
}
footer a{
    color:rgb(190, 190, 190);
}