* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color:#121212;
    overflow-x: hidden;
}

.invert {
    filter: invert(1);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    width: 100vw;
}

.signup {
    height: 800px;
    width: 350px;
    /* background-color: #121212; */
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.access{
    border: 1px solid #ada0a0;
    height:55px;
    width: 340px;
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
}
.access:hover{
    border:1px solid white;
}
.line{
    height: 1px;
    width: 350px;
    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: 18px;
    color: white;
    padding-left: 5px;
}
.already{
    display: flex;
    align-items: center;
    justify-content: center;
}