body {
    margin-top: 0;
    /* background-image: url("../images/background-white.ba82bd49ae70.png"); */
    background-image: linear-gradient(to bottom right, var(--accent1), var(--accent2));
}

body::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/background-white.ba82bd49ae70.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.login-container {
    width: 500px;
    border-radius: 10px;
    padding: 1.5em;
    text-align: center;
    z-index: 2;
}

.logo {
    margin: 10px;
    height: 50px;
}

.login-form {
    margin: auto;

    /* display: flex;
    flex-direction: column;
    align-items: center; */
    overflow: hidden;
    
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    justify-items: center;
}

.login-button {
    font-size: 1rem !important;
    width: 30%;
}

.usertype-selector {
    display: inline-flex;
    border-radius: 100px;
    border: 2px solid #fff;
    margin: auto;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + label {
    cursor: pointer;
    padding: 0.25em 0.75em !important;
    color: #fff;
    border-radius: 100px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

input[type="radio"]:checked + label {
    background-color: #fff;
    color: var(--accent1);
}

/* Username and Password fields */
.form-input {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 8px;
    padding: 15px;
    width: 80%;
    font-size: 1rem;
    background: none;
}

.form-control {
    margin: 3%;
    flex-shrink: 1;
    accent-color: #fff;
    color: #fff;
    caret-color: #fff;
}

.form-control::placeholder {
    color: #fff;
    opacity: 0.5;
}

.content {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 700px) {
    .login-container {
        width: 80%;
    }
}