/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap"); */
@font-face {
    font-family: 'NanumSquareNeo-Variable';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
*
{    
    
   font-family: 'NanumSquareNeo-Variable';
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   /* font-family: 'Open sans', sans-serif; */
}

input::placeholder {
    font-family: 'NanumSquareNeo-Variable';
}

body
{
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 80vh;
   font-size: 1rem;
   background-color: #001f68;
}

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: 20%;
}

.title {
  font-size: 1.1rem;
  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: 1rem 0 0 0 ;
   background-color: #FFC000;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1.2em;
}

.chk_button1
{
   display: block;
   border: none;
   padding: 1rem;
   margin: 1rem 0 0 0 ;
   background-color: #FFC000;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1.2em;
}

.chk_button2
{
   display: block;
   border: none;
   padding: 1rem;
   margin: 1rem 0 0 0 ;
   background-color: #00B050;
   color: #fff;
   font-weight: 700;
   text-align: center;
   border-radius: 0.5rem;
   transition: 0.3s;
   width: 100%;
   cursor: pointer;
   font-size: 1.2em;
}

.div_wrap {
	background-color:#fff;
   border-radius: 0.5rem;
}

.btn_text {
	padding:10px;
}

.btn_text > p {
	font-size:12px;
	line-height:1.5;
	color:red;
}

.btn03-div {
	margin-top: 2rem;
}

.btn03-div > span {
	font-size:15px;
}

.btn03-div > button {
	border:none;
}

.btn03-div > button  > a {
	text-decoration: none;
	color:red;
	border-bottom:1px solid red;
	vertical-align: text-bottom;
}



@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: 5rem;

   }
}