body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    background: -moz-linear-gradient(top, #53a3a4 0%, #8bcdb0 100%);
    background: -webkit-linear-gradient(top, #53a3a4 0%, #8bcdb0 100%);
    background: linear-gradient(to bottom, #53a3a4 0%, #8bcdb0 100%);
}

.centered-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* This makes the container take the full viewport height */
}

.auth-form {
    width: 360px;
}

.card-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 35px;
    color: var(--tep-gray-800);
    margin-top: 20px;
}