.container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .text {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 40px;
    }

    .button {
        background-color: #05A8F4;
        border-color: #05A8F4;

        &:hover {
            background-color: #05A8F4;
            border-color: #05A8F4;
        }
    }
}