body {
    background: #fff;
    margin-top: 5px;
    font-size: 16px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 15px;
}

.text-primary {
    color: #0e2d52;
}

.text-info {
    color: #0B8290;
}

.logo {
    margin-bottom: 25px;
}

.main-wrapper {
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    background-color: #fff;
    border: 1px solid #ccc;
    width: 95vw;
}

/* .main-image {
    width: 400px;
    height: auto;
} */

.main-alert {
    font-family: "Zilla Slab", serif;
    font-size: 32px;
    font-weight: 500;
    color: #0e2d52;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.main-message {
    font-size: 20px;
}

.main-alert-mess {
    display: flex;
    align-items: center;
}

.alert-icon {
    color: #fa6100;
    width: 35px;
    height: auto;
    margin-right: 10px;
}

.main-content {
    padding: 20px;
}

.main-sig {
    color: #0e2d52;
    font-size: 20px;
    font-weight: 600;
}

.main-sig-btm {
    font-size: 26px;
    color: #0B8290;
    font-weight: 500;
}

.main-img-wrapper {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img-container {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-img-container img {
    height: 500px;
    width: auto;
}

@media screen and (min-width: 768px) {
    .main-wrapper {
        height: 100%;
    }

    .main-container {
        display: flex;
        align-items: center;
        width: 80vw;
    }

    .main-img-wrapper {
        justify-content: flex-end;
    }
}