@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

*
{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Open sans', sans-serif;
}

body
{
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 80vh;
   font-size: 1rem;
   background: #8195a0;
}

h1 {
  margin: 0;
}

img
{
   max-width: 100%;
   height: auto;
}

.wrap
{
   display: grid;
   grid-template-columns: 100%;
   height: 80vh;
   margin-left: 1.5rem;
   margin-right: 1.5rem;
}

.form
{
   height: 368px;
}

.registor
{
   position: relative;
   bottom: 1rem;
   width: 100%;
   background-color: #f2f2f2;
   padding: 2rem 1rem;
   border-radius: 1rem;
   text-align: center;
   box-shadow: 0 8px 20px rgba(35, 0, 77, 0.2);
   animation-duration: 0.4s;
   animation-name: animatechkbox;
   margin-top: 30%;
}

.title {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 2rem;
}

.chkbox
{
   display: grid;
   grid-template-columns: max-content 1fr;
   column-gap: 0.5rem;
   padding: 1.125rem 1rem;
   background-color: #fff;
   margin-top: 1rem;
   border-radius: 0.5rem;
}

.bx-icon
{
   font-size: 1.5rem;
   color: #000843;
}

.bx_input
{
   border: none;
   outline: none;
   font-size: 1rem;
   font-weight: 700;
   color: #23004d;
   width: 100%
}

.bx_input::placeholder
{
   font-size: .9rem;
   font-family: "Open Sans", sans-serif;
   color: #8c8796;
}

.barcord_box {
   display: grid;
   /* grid-template-columns: max-content 1fr;
   column-gap: 0.5rem; */
   padding: 1.125rem 1rem;
   background-color: #fff;
   margin-top: 1rem;
   border-radius: 0.5rem;
 }

.chk_button
{
   display: block;
   border: none;
   padding: 1rem;
   margin: 2rem 0;
   background-color: #091988;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1.2em;
}

.chk_button:hover {
  background-color: #091988;
}

.chk_button2
{
   display: block;
   border: none;
   padding: 1rem;
   margin: 2rem 0;
   background-color: #449EC9;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1em;
}

.chk_button2:hover {
  background-color: #2f4988;
}

.chk_button3
{
   display: block;
   border: none;
   padding: 1rem;
   margin: 2rem 0;
   background-color: #06275a;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1em;
}

.chk_button3:hover {
  background-color: #06275a;
}

.chk_button4
{
   display: block;
   border: none;
   padding: 1rem;
   margin: 2rem 0;
   background-color: #06275a;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1em;
}

.chk_button4:hover {
  background-color: #06275a;
}

@keyframes animatechkbox {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@media screen and (min-width: 576px)
{
   .form
   {
      width: 348px;
      justify-self: center;
   }
}

@media screen and (min-width: 1024px)
{
   .wrap
   {
      height: 80vh;
      overflow: hidden;
   }

   .content
   {
      grid-template-columns: repeat(2, max-content);
      justify-content: center;
      align-items: center;
   }

   .registor
   {
      bottom: -2rem;
   }
}