@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-image: linear-gradient(rgba(24, 24, 24, 0.5), rgba(20, 20, 20)); */
    background: linear-gradient(rgba(0, 0, 0, 0.84), rgb(0, 0, 0));
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* main{
    width: 100vw;
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0.84), rgb(0, 0, 0));
} */
.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: 109vh;
    width: 650px;
    margin: 2.5% 25% 0 29%;
    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{
    padding-top:16px;
    position: absolute;
    background: transparent;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.spotify-logo h1{
    margin-top: 0px;
    font-size: 2rem;
    font-weight: 700;
}
.continue{
    position: relative;
    padding: 14% 0 0 5px;
}
.url {
    background-color: rgb(15, 15, 15);
    height: 6vh;
    width: 90%;
    margin: 10px 20px;
    border-radius: 30px;
    display: flex;
    border:1px solid rgb(157, 157, 157);
}
.url :nth-child(1){
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin:0px 15px;
    font-weight: 600;
    padding-right: 20px;
}
.url:hover{
    border:1px solid white;
}

.sepration{
    height: 1px;
    width: 40vw;
    background-color: rgb(53, 53, 53);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin:2rem 0px;
}
.info{
    background:transparent;
    display: flex;
    flex-direction: column;
}
.input-box{
    display: flex;
    flex-direction: column;
    margin: 15px 0px;
    width: 100%;
    font-size: 0.9rem;
    font-weight:600;
    gap: 10px;
}
.input-box input{
    background:transparent;
    border:1px solid rgb(157, 157, 157);
    padding-left:10px;
    border-radius: 4px;
    height: 6vh;
    color: white;
    font-size: 1rem;
    width: 105%;
    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{
    padding-bottom: 20px;
 }  */
.pwd-icon {
    margin-top: -14%;
    transform: translate(96%);
}
.btn {
    margin-top: 15px;
    margin-left: 2px;
    background-color: #1ed760;
    padding:15px 10px;
    width: 109%;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
}

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

.account{
    margin-top:30px;
    margin-left: 90px;
}
.account a:hover{
    color: #1ed760;
}
.forget{
    height: 5vh;
    margin-top: 40px;
    margin-left: 90px;
}

.newaccount{
    margin-top: 30px;
    width:100%;
    margin-left: 10px;
    color: gray;
    font-size:1rem;
}

footer{
    background-color: rgb(20, 20, 20);
    height: 15vh;
    margin: 20px 0px 0px 0px;
    display: block;
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
    color: rgb(184, 184, 184);
}
footer a{
    color: rgb(184, 184, 184);
}