.container {
    font-family: "Public sans", sans-serif;
    color: #000;
    margin: 80px 0px;
}

.bg_container {
    color: #fff;
    position: relative;
    height: 550px;
    width: 100%;
}

.bg_wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-image: linear-gradient(
            rgba(1, 34, 55, 0.65),
            rgba(1, 34, 55, 0.65)
        ),
        url("/static/images/mecat/register-now-bg.jpg");
    transform: translateZ(0);
}

.main {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 90%;
    max-width: 1100px;
    left: 50%;
    transform: translateX(-50%);
}

.main img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    left: -30px;
}

.main p {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    left: 50px;
    font-size: 48px;
    width: 100%;
    max-width: 550px;
    font-weight: 700;
}

.btn {
    font-family: "Public sans", sans-serif;
    background: rgba(1, 34, 55);
    font-weight: 700;
    border: none;
    outline: none;
    padding: 20px 0px;
    width: 180px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
}

.form_container {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.head {
    font-size: 48px;
    font-weight: 600;
}
.sub_head {
    color: #2da397;
    font-weight: 500;
    font-size: 24px;
    margin: 10px 0px;
}

.description {
    margin: 30px 0px;
    color: #555;
    font-weight: 600;
    font-size: 16px;
    word-spacing: 2px;
    line-height: 1.8rem;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.countdown div {
    border: 1px solid #dfdfdf;
}

.countdown_number {
    color: #f16101;
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    padding: 30px 0px;
}
.countdown_unit {
    background: #dfdfdf;
    padding: 13px 0px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 11px;
    color: #6f6f6f;
}

.form {
}

.form p {
    font-size: 24px;
    font-weight: 600;
    padding: 30px 40px;
    background: #2da397;
    font-weight: 700;
    color: #fff;
}

.form form {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.form form input {
    outline: none;
    font-size: 16px;
    background: #dfdfdf;
    border: none;
    padding: 25px 20px;
    font-family: "Public sans", sans-serif;
    font-weight: 600;
    border-radius: 5px;
    color: #333;
    margin-bottom: 10px;
}

.apply_btn {
    font-family: "Public sans", sans-serif;
    background: #f16101;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    padding: 25px;
    width: 100%;
    outline: none;
    border: none;
}

@media screen and (max-width: 950px) {
    .form_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form form {
        padding: 20px 0px;
        border: none;
    }
}

@media screen and (max-width: 750px) {
    .bg_container {
        height: 450px;
    }

    .main img {
        top: 45%;
        height: 80%;
    }

    .main p {
        left: 20px;
    }
}

@media screen and (max-width: 550px) {
    .main p {
        font-size: 36px;
    }
    .countdown_number {
        padding: 20px 0px;
    }
    .countdown {
        gap: 5px;
    }
}

@media screen and (max-width: 350px) {
    .main p {
        font-size: 24px;
    }
}
