body, html {
    height: 100%;
    margin: 0;
}

.auth-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-pop-up {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    background: #d6d6d6;
    padding: 20px 40px;
    border-radius: 5px;
    min-width: 500px;
}

.auth-pop-up input {
    width: 100%;
}

.auth-title {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #454545;
}

.auth-input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-button-bar {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.auth-alert {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    align-items: center;
    justify-content: center;
    background-color: #ffe0e0;
}

.auth-alert a {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #505050;
}

.auth-logout {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    align-items: center;
    justify-content: center;
    background-color: #ecffe0;
}

.auth-logout a {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #505050;
}