body {
    margin: 0;
    font-family: 'Arial';
    min-height: 100vh;
    position: relative;
}

.d-none {
    display: none;
}

footer {
    padding-bottom: 0px;
    bottom: 0;
    width: 100%;
}

header, footer {
    background-color: #001391;
}

.main_content {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.fixed-footer {
    position: fixed;
}

.header_title, .footer_title {
    color: #fff;
    font-size: 34px;
}

.header_info, .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contect_container {
    min-height: 80vh;
}

.title_container {
    margin-top: 4rem;
}

textarea {
    border: none;
    background-color: #F4F4F4;
}

textarea:focus, input:focus{
    outline: none;
}

.main_logo {
    height: 35px;
}

.input_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.input_item > label {
    margin-bottom: 1rem;
}

.input_item > input {
    background-color: #F4F4F4;
    color: #000000;
    border: none;
    padding: 0 10px 0 20px;
    height: 40px;
max-width:90%;
font-size:16px;
}

.main_form {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.form_button, .primary-button {
    background-color: #2B7BF4;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 1.5rem 3rem;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.button_div {
    margin-top: 2rem;
    margin-bottom: 4rem;  
}

.footer_logos {
    display: flex;
    justify-content: space-between;
}

.footer_copyright {
    color: #BDBDBD;
    font-size: 12px;
}

.error-msg {
    color: #a94442;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.term_conditions {
    text-decoration: none;
}

@media (min-width: 768px) {
    .container {
        width:750px
    }
}

@media (min-width: 992px) {
    .container {
        width:970px
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .container {
        width:1170px
    }
}

@media (max-width: 768px) {
    .title_container {
        margin-top: 2rem;
    }

    footer {
        position: inherit;
    }

    .main_content {
        margin-bottom: 4rem;
        margin-top: 2rem;
    }

 .header_info, .footer_info {
     flex-direction: column;
 }
 .header_title, .footer_title {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 26px;
    }
 .main_logo {
        margin-top: 1rem;
    }
 .fixed-footer {
     position: inherit;
 }
  .header_info, .footer_info {
       flex-direction: column;
    }

    .header_title, .footer_title {
       font-size:28px;
    }
    .header_title {
       margin-top: 0.5rem;
    }
    .main_logo {
       margin-top: 1rem;
    }

.input_item > input {
  
max-width:100%;
}
}

@media (min-height: 1000px) {
    footer {
        position: absolute;
    }   
}