/* Spinner container */
.spinner-container {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #404040;
}

/* Spinner animation */
.spinner-container div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 10px solid #CF002C;
    border-radius: 50%;
    animation: spinner 1.7s linear infinite;
    border-color: #CF002C transparent transparent transparent;
}

.spinner-container div:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-container div:nth-child(2) {
    animation-delay: -0.8s;
}

.spinner-container div:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Additional styles for the text and button */
span {
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
}

button {
    margin-top: 50px;
    padding: 10px 50px;
    background-color: #444;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #CF002C;
}