

body {
    background-color: #212121;
    height: fit-content;
    font-family: 'Inter';
}

.login_txt{
    color: #A3A3A3;
}

#lower_login{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100dvh - 50px);
    min-height: 530px;
}

#login_box{
    display: flex;
    height: 320px;
    width: 400px;
    border: 1px solid #404040;
    border-radius: 30px;
    margin-bottom: 10vh;
    box-shadow: 14px 14px 0 #6cb3ffb3;
    background-color: #1c1c1c;
    flex-direction: column;
    padding: 24px;
    margin-left: 30px;
    margin-right: 30px;
}

#login_box h1{
    margin: 0 auto;
    border-bottom: 1px solid #404040;
    text-align: center;
    padding: 0 20px 8px 20px;
}

#login_input{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70%;
    justify-content: space-evenly;
    padding-top: 8px;
}

#login_input input{
    width: 250px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #404040;
    background-color: #1c1c1c;
    color: #a3a3a3;
    padding: 0 12px;
}
input::placeholder {
  color: rgba(163, 163, 163, 0.5);
}
#login_input input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #a3a3a386;
}

#login_input input:invalid:not(:placeholder-shown) {
    border-color: #ff4d4d;
}
#login_input input:valid {
  border-color: #26A69A;
}

#login_input button{
    border-radius: 999px;
    padding: 14px;
    background-color: #6cb3ffed;
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 800;
    border: none;
    min-width: 100px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#login_input button:hover{
    background-color: #6cc9ff;
    box-shadow: 0 0 10px #6cb3ff1a;
    cursor: pointer;
}

#login_text{
    display: flex;
    flex-direction: row;
    margin-top: auto;
    margin-left: 28px;
}

#login_text a{
    margin-left: 4px;
    text-decoration: none;
    color: #6cb3ff;
}

#login_text a:hover{
    color: #6cc9ff;
}


@media (max-width: 380px){
    #login_input input{
        width: 100%;
    }
}