body {
    display: flex;
    align-items: center;
    height: 100vh;
}

.login-section {
    background-color: var(--color-background);
    width: 100%;
    max-width: 460px;
    padding: 40px;
    margin: auto;
    border-radius: 5px;
}

@media only screen and (max-width: 600px) {
    .login-section {
        display: flex;
        align-items: center;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

.login-header {
    min-inline-size: fit-content;
    font-size: 25px;
    color: var(--color-accent) !important;
    font-weight: 700;
}

.btn-login {
    color: white !important;
    background-color: var(--color-primary) !important;
    border: 0 !important;
    font-weight: 600;
    font-size: 20px;
}

.btn-login:hover {
    background-color: var(--color-primary-600) !important;
}

.login-logo {
    width: 100%;
}

.auth-control {
    font-size: 18px !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}

.auth-control:not(select) {
    padding: 1rem 0.5rem;
    border-width: 2px;
}

.auth-control::placeholder {
    color: #ccc;
    font-weight: bold;
    font-size: 0.9rem;
}

.auth-control:focus {
    box-shadow: none !important;
    outline: 0;
}

.btn-auth {
    color: #6c757d !important;
    background-color: transparent;
    border: 2px solid #def0fd !important;
    box-shadow: none;
    font-weight: 600 !important;
}

.btn-auth:hover {
    background-color: #c8e0f1;
    border: 2px solid #def0fd;
}

.authentication-background-container {
    height: 100%;
    width: 100%;
}

.authentication-background {
    background-size: cover;
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;
    -ms-background-position: center center;
    background-position: center center;
    position: fixed;
    height: 100%;
}

.provider-wrapper {
    display: grid;
    gap: 0.5rem;
}

.provider-button {
    padding: 0;
    display: inline-flex;
    align-items: center;
    -webkit-appearance: none;
}

.provider-button > .icon {
    padding: 15px 25px;
}

.provider-button > .text {
    white-space: inherit;
    text-align: left;
}

.footer-container {
    position: absolute;
    bottom: 5px;
    padding-right: 10px
}

.footer-heart {
    color: #dc3545;
}

.progress {
    height: 10px;
    background-color: var(--color-primary-100);
}

.invitation-code-wrapper {
    display: flex;
    margin-bottom: 20px;
}

.invitation-code-wrapper input {
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid var(--color-primary);
    background: var(--color-accent-200);
    font-weight: bold;
    color: var(--color-text-600);
    outline: none;
    transition: all 0.5s;
    caret-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 3px;
}

.invitation-code-wrapper input:focus {
    border: 2px solid var(--color-primary);
    background-color: inherit;
    transform: scale(1.05);
}