.message {
    font-size: 21px;
}

.btn {
    border-radius: 30px;
    font-size: 20px;
}

.btn-primary {
    background-color: lightgreen;
    border: 1px solid lightgreen;
    color: white;
}
.btn-primary:hover {
    background-color: transparent;
    border: 1px solid lightgreen;
    color: lightgreen;
}

.btn-secondary {
    background-color: red;
    border: 1px solid red;
    color: white;
}
.btn-secondary:hover {
    background-color: transparent;
    border: 1px solid red;
    color: red;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
.shown {
    opacity: 1!important;
    visibility: visible!important;
}

.container-home {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.home {
    position: absolute;
    inset: 0;
}
.success {
    position: absolute;
    inset: 0;
    margin: auto;
}
.success-text {
    color: red;
    font-size: 25px;
    position: absolute;
    bottom: 25vh;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.sm-full {
    width: 70%;
}
@media (min-width: 576px) {
    .xl-shrink {
        width: 30%;
    }
}