* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #282828;
    overflow-x: hidden;
}

.invert {
    filter: invert(1);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    width: 100vw;
}

.login {
    height: 750px;
    width: 825px;
    background-color: #121212;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 20px 0px 20px 0px;
}
.access{
    border: 1px solid #ada0a0;
    height:50px;
    width: 340px;
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.access:hover{
    border:1px solid white;
}
.line{
    height: 1px;
    width: 500px;
    border: 1px solid white;
}
label{
    font-size: 19px;
}
input{
    width: 340px;
    height: 50px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid white;
    padding: 15px;
    margin-top: 8px;
}
.login-btn{
    border-radius: 25px;
    background-color: rgb(72, 190, 72);
    font-size: 19px;
    font-weight: bold;
    border: transparent;
}
a{
    font-size: 20px;
    color: white;
}
@media (max-width:550px){
    body{
        background-color: #121212;
        overflow: hidden;
    }
}