body > .center-container {
    height: 100vh;
}

.auth-container {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    border-image: initial;
    border-radius: 0.5rem 0.5rem 0px 0px;
    border-bottom-style: none;
}

.auth-container > .status-container{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.status-container > .status-text {
    font-weight: 400;
    font-size: 20px;
}

.status-container > .status-value {
    font-weight: 400;
    font-size: 20px;
    color:red;
}

.status-container > .status-value.filled{
    color:green;
}

.auth-container > button {
    width: 100%;
    font-size: 20px;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.center-container > .card {
    width: 90%;
    border: none;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features {
    min-width: 60vh;
    padding: 5px;
    border-radius: 0px 0px 0.5rem 0.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    border-image: initial;
}

html > body {
    background-color: #f3f3f3;
}

.white {
    background-color: white;
}

.message {
    display: none;
    justify-content: center;
    white-space: pre-line;
    text-align: center;
    
}

.message.is-visible {
    display: flex;
}

.message.error{
    color: red;
}

.message.success{
    color: green;
}

.loader-container {
    display: flex;
    justify-content: center;
    padding: 5px;

}