body {
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.container {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.header,
.footer {
    background-color: #f3f7fa;
    display: flex;
    padding: 20px;
}

.alert {
    font-weight: 600;
    font-size: 0.9rem;
}

.danger {
    color: red;
}

.success {
    color: green;
}

.bold {
    font-weight: bold;
}

.logo {
    max-width: 200px;
}
.logo img {
    max-width: 100%;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.noContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info h1,
.noContent h1 {
    font-size: 1.8rem;
    margin: 20px 0;
    color: #2142a6;
    text-align: center;
}
.noContent h1 {
    font-size: 15rem;
}

.noContent h2 {
    font-size: 1.8rem;
}

.info p {
    max-width: 682px;
    text-align: center;
}

.info p span {
    font-weight: bold;
    color: #2142a6;
}

.info form {
    display: flex;
    width: 30%;
    margin: 10px auto;
    justify-content: center;
    align-items: center;
}

.info form button {
    color: #fff;
    background: #1E89FC;
    border-radius: 10px;
    padding: 12px;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.iframeWrapper {
    width: 100%;   
    display: flex;
    justify-content: center;
}
.iframeWrapper .shuftiFrame {
    min-width: 100%;
    min-height: 500px;
}

.footer span {
    font-size: .8rem;
}

@media (max-width: 768px) {
    .header {
        justify-content: center;
    }
    .info h1 {
        font-size: 1.3rem;
    }
}