* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'arial';
}
@font-face{
    font-family: 'arial';
    src:url(../fonts/arial/arial.ttf);
}

nav {
    background-color: #ba1622;
}

nav .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .container-fluid img {
    width: 70px;
}

nav .container-fluid img:first-child {
    margin-left: 7rem;
}

nav .container-fluid img:last-child {
    margin-right: 2rem;
}

#contr {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 85px;
}

#contr .box {
    width: 100%;
    max-width: 360px;
    padding: 1rem;
}

.sign {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
}

.sign h5 {
    font-size: 22px;
    font-weight: bold;
    color: grey;
    cursor: pointer;
}
#contr.active{
    display: block;
}

.sign h5:first-child {
    color: #ba1622;
}

#frm , #frm2{
    width: 100%;
    display: flex;
    flex-direction: column;
}

#frm .input , #frm2 .input {
    border: 1px solid #ddd;
    outline: none;
    padding: 12px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 1rem;
}

#frm .input::placeholder ,#frm2 .input::placeholder {
    font-size: 13.5px;
    font-weight: 600;
}

#frm .submit , #frm2 .submit{
    border: none;
    outline: none;
    padding: 12px;
    border-radius: 5px;
    background-color: #ba1622;
    color: white;
    font-weight: 600;
}

#contr .forget {
    text-align: right;
    margin-top: 10px;
}

#contr .forget a {
    color: black;
    font-weight: 600;
}


/* Code of check section start here */
#second-frm{
    margin-bottom: 120px;
}
#second-frm .inPad{
    padding: 14px 10px;
    border: 1px solid black;
    border-radius: 0px !important;
}
#second-frm .inPad2{
    padding: 14px 0;
    border: 1px solid black;
    border-radius: 0px !important;
    position:relative;
}
#second-frm .inner-pad{
    padding: 12px;
    cursor: pointer;
}
#second-frm .form-label{
    margin-bottom: 0 !important;
    font-weight: 600;
}
#second-frm .extra{
    color: gray;
    font-weight: 500;
    margin-bottom: 3px;
}
#second-frm .icon img{
    mix-blend-mode: multiply;
}
#second-frm .inPad3{
    margin-bottom: 8px !important;
}
#footer2 h6{
    font-weight: 600;
}
#footer h6{
    font-weight: 600;
}
#footer hr:not([size]) {
    height: 2px;
}
#lst-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
#lst-btn .btns{
    margin-top: 10rem;
    outline: none;
    padding: 7px 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
    background-color: #ba1622;
    color: white;
    cursor: pointer;
    font-weight: 600;
    cursor: pointer;
    width: 260px;
}

/* code of check file ended here */

/* Responsive adjustments */
@media (max-width: 576px) {
    nav .container-fluid img {
        width: 60px;
    }
    nav .container-fluid img:last-child {
        width: 47px;
    }

    #contr {
        margin-top: 50px; /* Adjusted margin for smaller screens */
    }

    #contr .box {
        width: 100%;
        padding: 1rem; /* Adjust padding for smaller screens */
    }
    nav .container-fluid img:first-child {
        margin-left: 2rem;
    }
}


