@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
:root{
    --blue: #1CB5A6;
    --black: #242424;
    --White: #fff;
}
body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Top bar */
.top_msg{
    background-color: var(--blue);
}
.top_msg p{
    color: var(--White);
    font-size: 14px;
    margin: 0px;
    padding: 3px 0;
}
ul{
    margin: 0;
    padding: 0px;
}
li{
    list-style: none;
}
a{
    text-decoration: none !important;
}
input{
    outline: none;
}
.website_header {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}
.main_logo img {
    max-width: 200px;
}
.app-wrapper .float-end .btn-danger{
    background-color: #213939;
    transition: 0.3s all;
}
.app-wrapper .float-end .btn-danger:hover{
    background-color: #5e8686;
}
/* Form */
.input_column.inner_two_column select {
    max-width: 60px;
    padding: 0 5px !important;
    margin-right: 15px;
}
.form_wrapper .column {
    padding: 0 30px;
    border-right: 1px solid #ccc;
}
.inner_form_wrap button {
    width: 100%;
    height: 45px;
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    transition: 0.3s all;
    text-transform: uppercase;
    background: #f7f7f7;
    border-radius: 6px;
}
.inner_form_wrap .label-info {
    text-align: center;
    border-bottom: 1px solid;
    display: table;
    margin: 10px auto 0;
}
.inner_form_wrap .label-info a {
    color: #000;
    font-size: 14px;
    transition: 0.3s all;
}
.inner_form_wrap form .input_column input, .inner_form_wrap form .input_column select {
    width: 100%;
    height: 45px;
    border: none;
    border: 1px solid #ccc;
    outline: none;
    padding: 0 10px !important;
    border-radius: 6px;
}
.inner_form_wrap form .input_column, .inner_form_wrap form .input_column {
   margin-bottom: 20px;
}
.form-control:focus{
    box-shadow: none !important;
}
.two_column {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}
.two_column .input_column {
    width: calc(50% - 20px);
    margin: 0 10px;
}
.inner_form_wrap button:hover {
    background-color: var(--blue);
    color: var(--White);
    border-color: var(--blue);
}
.inner_form_wrap .label-info a:hover {
    color: var(--blue);
}
.form_wrapper .column:last-child {
    border-right: 0;
}
.form_wrapper {
    margin: 50px 0 0 0;
}
.form_wrapper .row{
   max-width: 1200px;
   width: 100%;
   margin: 0 auto;
}
input::placeholder{
    color: var(--black);
}
.inner_form_wrap .custom_column {
    display: flex;
}
.inner_form_wrap .custom_column .second_column {
    width: 30%;
    text-align: center;
    margin-left: 20px;
}
.inner_form_wrap .custom_column .first_column {
    width: 70%;
}
.inner_form_wrap .custom_column .second_column a {
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: 0.3s all;
}
.inner_form_wrap .custom_column .second_column a:hover {
    background-color: var(--blue);
    color: var(--White);
}
h2.main_title:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--blue);
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
h2.main_title {
    text-align: center;
    text-transform: uppercase;
    position: relative;
    font-size: 26px;
    font-weight: 600;
}
.continue_with_wrap {
    max-width: 950px;
    margin: 70px auto;
    width: 100%;
}
.continue_with_wrap ul {
    padding: 0;
    margin: 50px 0 0 0;
    display: flex;
    justify-content: center;
}
.continue_with_wrap ul li{
  margin: 0 10px;
  width: 33.33%;
  padding: 5px;
}
.continue_with_wrap ul li a p {
    margin: 0 0 0 10px;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--White);
}
.continue_with_wrap ul li a {
    display: flex;
    align-items: center;
}
.continue_with_wrap ul li a img {
    max-width: 45px;
}
.continue_with_wrap ul li.First{
    background-color: #4F86EC;
}
.continue_with_wrap ul li.second{
    background-color: #007bb696;
}
.continue_with_wrap ul li.third{
    background-color: #45568e9e;
}
.loader_wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0px, 0px);
    background: rgba(255,255,255,0.6);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

/* Media query */
@media screen and (max-width:767px) {
    .form_wrapper{ margin: 0px 0 0 0;}
    .inner_form_wrap { margin-top: 30px;}
    .form_wrapper .column{padding: 0px; border: none;}
    .inner_form_wrap .custom_column .second_column { width: 40%; margin-left: 10px;}
    .inner_form_wrap form .input_column, .inner_form_wrap form .input_column { margin-bottom: 10px;}
    .two_column .input_column {width: calc(100% - 10px); margin: 0 5px;}
    .two_column{flex-wrap: wrap;}
    .continue_with_wrap{margin: 40px auto;}
    .continue_with_wrap ul li { margin: 0; width: 100%; padding: 5px;}
    .continue_with_wrap ul{gap: 15px; flex-direction: column;}
}