.desktop {
    display: none;
}

.title {
    text-transform: uppercase;
}

.center {
    margin: auto;
    width: fit-content;
}

.mt30px {
    margin-top: 30px;
}

.mb20px {
    margin-bottom: 20px;
}

.success {
    color: green;
}

.error {
    color: #ff0000;
}

@media screen and (min-width: 992px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: block;
    }
}