
body{
    place-items: center;
    margin-top: 10%;
}

.login-container{
    display: grid;
    background: #020814;
    padding: 20px;
    border: 2px solid #fa8128;
    border-radius: 12px;
    justify-items: start;  
    width: 350px;           
    box-sizing: border-box;
    gap: 15px;             
}

.logo{
    justify-self: center;  
    width: 150px;
    margin-top: 4%;
}

h2{
    margin-top: 2%;
    text-align: center;
    font-size: x-large;
    font-weight: 700;
}

h3{
    margin-bottom: 0;
    margin-top: 1%;
}

.login-container form {
    display: grid;         
    width: 100%;           
    box-sizing: border-box;
}

input{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    background-color: #1b1f36;
    color: #fff;
}

.login-container form .button-login{
    justify-self: center;  
    padding: 10px 20px;
    background-color: #1db954;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

.reg-link{
    justify-self: center;   
    font-weight: bold;
    color: #FA8128;         
    text-decoration: none; 
}




@media screen and (max-width: 400px){
    .login-container{
        width: 90%;
        padding: 15px;
    }

    .logo{
        width: 120px;
        margin-bottom: 10px;
    }
}
