:root{
    --textfont:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --textcolor: #8d8d8d; 
    --bg_color:  radial-gradient( circle, rgb(0, 36, 59), rgb(0, 0, 0)90%);
    --glasscolor: linear-gradient(145deg, #ffffff0a, #acacac13);
    --svgcolor:white;
    --highlighted: white;
    --light: 10px 10px 30px rgba(255, 255, 255, 0.199);
}

.login{
    background-image: var(--glasscolor);
    align-items: center;
    border-radius: 15px;
    box-shadow: var(--light);
    backdrop-filter: blur(10px);
    height: 30vh;
    width: 70vw;
    margin: auto;
    margin-top: 10vh;
    font-family: Arial, sans-serif;
    padding: 1vh 1vw;
}
.login h2{
    text-align: center;
    font-size: 3vh;
    color: var(--textcolor);
    margin-top: 1vh;
}
.loginform{
    padding: 4vh 2vw;
}

.login_inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: space-between;
    width: 100%;
    height: fit-content;
    margin: 1vh 0 0 0;
    border-radius: 5px;
    
}
.login_input{
    justify-self: center;
    width: 90%;
    height: fit-content;
    padding: .8vh .8vw;
    margin: .8vh 0 0 0 ;
    border: none;
    border-radius: 5px;
    font-size: 2.5vh; 
}
.login_button{
    justify-self: center;
    align-self: center;
    width: 50%;
    padding: .8vh .8vw;
    margin: 1vh 0 0 0 ;
    border: none;
    border-radius: 5px;
    font-size: 2.5vh;
    cursor: pointer;
}

.login label{
    display: block;
    margin-bottom: 10px;
    color: var(--textcolor);
    font-size: 2.5vh;
}
.changeformtype{
    text-align: center;
    margin-top: 2vh;
}
.sing_up_button{
    width: fit-content;
    justify-self: center;
    align-self: center;
    text-align: center;
    text-justify: center;
    margin: 2vh 0 0 0;
    background: none;
    border: none;
    color: var(--highlighted);
    cursor: pointer;
}
@media (orientation: landscape) and (max-width: 1300px) {
    .login{
        width: 70vw;
        height: 60vh;
    }
}
@media (min-width:1200px){
    .login{
        width: 50vw;
        height: 40vh;
    }
}