.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1 {
    text-align: center;
}

.home {
    padding: 20px;
    display: flex;
    border: 1px solid black;
    align-items: center;
    flex-direction: column;
    width: 400px;
}

.auth-form {
    border: 1px solid black;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 400px;
    border-radius: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}
label{
    align-self: self-start;
}

input {
    width: 100%;
    padding: 8px 8px;
    outline: none;
    border-radius: 5px;
}

.grab-button {
    padding: 5px;
    font-size: xx-small;
    cursor: pointer;
    background-color: rgb(89, 89, 220);
    color: white;
    align-self: self-end;
    margin-top:5px ;
}

.main-button{
    width: 50%;
    margin-top: 10px;
    padding: 8px;
    background-color: rgb(28, 28, 70);
    border-radius: 5px;
    outline: none;
    border: none;
    color: white;
    cursor: pointer;
}

.error-msg{
    font-weight: 800;
    color: red
}
