:root {
    --red: #de2128;
}

.text-red{
    color: #de2128 !important;
}
.bg-red{
    background-color: #de2128 !important;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.h2, h2 {
        font-size: 1.6rem;
    }

.main-container {
    background-size: cover;
    background-position: left top;
}

.left-img img {
    width: 100%;
}

.form-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-box h4 {
    margin-bottom: 20px;
}

.form-box button {
    background-color: var(--red);
    color: white;
}

.footer {
    bottom: 0;
    width: 100%;
    background: white;
    color: #000;
    padding: 10px 0;
    text-align: center;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    font-size: 0.9rem;
}

.features div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.features img {
    width: 60px;
}


.btn:hover {
    background-color: #c51d23 !important;
    color: #fff !important;
}

@media (min-width: 768px){
    .main-container {
        min-width: 100vh;
    }
    .footer {
        position: absolute;
    }
    .main-container {
        background-image: url('images/img/plain bg 812 ht.png');
    }
}


@media (max-width: 420px){
    .text-white
    {
        color:#de2128 !important;
        display:none;
    }
}




