#login {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;
    
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 2.26rem;
    font-weight: bold;
}

#login-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    width: 80vw;
    height: 80vh;
    margin: 20vh;

    border-radius: 100px;

    backdrop-filter: blur(15px);

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

#login-form-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    position: absolute;
    font-size: 1rem;
}

.text-input {
    background-color: transparent;
    color: var(--txtColor);

    width: 150%;

    padding: 12px 20px;
    margin: 25px 0;

    box-sizing: border-box;

    border: 2px solid var(--txtColor);
    border-radius: 20px;

    -webkit-transition: 200ms;
    transition: 200ms;

    outline: none;
}

.text-input:focus {
    border: 2px solid var(--txtColorZoom);
}

.text-input::placeholder {
    color: var(--txtColor);
}

#login-button {
    background-color: var(--txtColorZoom);
    color: var(--txtColor);

    width: 150%;

    padding: 12px 20px;
    margin: 25px 0;

    box-sizing: border-box;

    border: transparent;
    border-radius: 20px;

    -webkit-transition: 200ms;
    transition: 200ms;

    outline: none;
}

#login-button:hover {
    background-color: var(--txtColor);
    color: var(--txtColorZoom);
}

#login-form h3 {
    border-bottom: 2px solid var(--txtColorZoom);
}

#login-form-main small {
    font-size: 0.8rem;
}

@media screen and (max-width: 1100px) {
    #login-form {
        flex-direction: column;
        justify-content: center;
    }
}

@media screen and (max-width: 620px) {
    .text-input {
        width: 120%;
    }

    #login-button {
        width: 120%;
    }
}

@media screen and (max-width: 460px) {
    #login-form {
        border-radius: 0px;
        width: 100vw;
    }

    .text-input {
        width: 100%;
    }

    #login-button {
        width: 100%;
    }
}