body {
    background-color: #Fff;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#form-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: top;
}

/*#form-inner-container {
    background-color: #DEF1E4;
	padding: 40px 50px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px gainsboro;
}*/


 /* PC Device */
@media all and (min-width:641px){

  
}




form input:not(:last-of-type) {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #E5E9F5;
    background-color: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    width: 100%;
}

/*form input:nth-last-of-type(1) {*/
/*    display: block;*/
/*    margin-bottom: 20px;*/
/*    border: 1px solid #E5E9F5;*/
/*    background-color: #fff;*/
/*    padding: 20px;*/
/*    margin-top: 10px;*/
/*    border-radius: 10px;*/
/*    width: 100%;*/
/*}*/



textarea {
			width: 100%;
			height: 100px;
			padding: 15px;
			box-sizing: border-box;
			border: solid 2px #1E90FF;
			border-radius: 5px;
			font-size: 12px;
			resize: both;
		}

#form-controls {
    margin-bottom: 20px;
}


h3 {
    color: Black;
    font-size: 150%;
    font-weight: 500;
}

label {
    color: #7369AB;
}

::placeholder {
    color: #C0C7DB;
    font-size: larger;
    letter-spacing: 1.2px;
}

#form-controls button {
    border: none;
    font-size: 120%;
}

#form-controls button:hover {
    cursor: pointer;
}

button[type="button"] {
    padding: 16px 20px;
    background-color:#67C23A;
    border-radius: 10px;
    color: white;
}

button[type="button"]:hover {
    background-color: #ff6678;
}

button[type="button"] {
    padding: 16px 10px 16px 10px;
    background-color: #67C23A;
    color: #fff;
}

#terms {
    width: 30px;
    height: 30px;
    appearance: none;
    border: 2px solid #7369AB;
    border-radius: 4px;
    position: relative;
}

#terms:checked:after {
    content: '\2713';
    color: #7369AB;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 3px;
}

label[for="terms"] {
    display: inline-block;
    width: 90%;
    margin-left: 10px;
}

.termsLink {
    color: #EF7886;
    text-decoration: none;
}

.hide {
    display: none!important;
}

#animation-container {
    display: inline-block;
}

/* responsive display */

@media(max-width:1438px) {
    lottie-player {
        width: 300px!important;
    }

	button {
        width: 60%;
    }

	 #sign-up-container, #sign-in-container {
    padding: 40px 50px;
    width: 900px;
    display: inline-block;
   }

  #form-inner-container {
    background-color: #DEF1E4;
	padding: 40px 50px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px gainsboro;
  }
}

@media(max-width:1124px) {
    #animation-container {
        display: none;
    }

	button {
        width: 60%;
    }

    #form-inner-container{
        display: flex;
        justify-content: center;
    }

	 #sign-up-container, #sign-in-container {
    padding: 40px 50px;
    width: 900px;
    display: inline-block;
   }

  #form-inner-container {
    background-color: #DEF1E4;
	padding: 40px 50px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px gainsboro;
  }
}

@media(max-width: 684px) {
    #form-controls {
        text-align: center;
        margin: 0;
        padding: 0;
    }

    button {
        width: 80%;
    }

    form input:not(:last-of-type) {
        width: 85%;
    }

/*	 form input: {*/
/*        width: 85%;*/
/*    }*/

    #toggleSignIn, #toggleSignUp {
        padding: 16px 75px;
    }

    #terms {
        width: 20px;
        height: 20px;
    }
    
    label[for="terms"] {
        display: inline-block;
        font-size: smaller;
    }

    #sign-up-container, #sign-in-container {
    padding: 20px 20px;
    width: 350px;
    display: inline-block;
   }

   #form-inner-container {
    background-color: #DEF1E4;
	padding: 10px 10px;
    max-width: 100%;
    /*border-radius: 5px;
    box-shadow: 0 0 20px gainsboro; */
   }
}

/* input 숨겨준다 */
input#terms{
  display:none;
  }

input#terms + label{
  cursor:pointer;
  padding: 16px 10px 16px 3px;
 }

input#terms + label > span{
  vertical-align: middle;
  padding-left: 5px;
 }

/* label:before에 체크하기 전 상태 CSS */
input#terms + label:before{
  content:"";
  display:inline-block;
  width:17px;
  height:17px;
  border:2px solid #F47C7C;
  border-radius: 4px;
  vertical-align:middle;
  }
  
/* label:before에 체크 된 상태 CSS */  
input#terms:checked + label:before{
  content:"";
  background-color:#F47C7C;
  border-color:#F47C7C;
  background-image: url('http://ado4u.net/saha/02_bus/check_btn.png');
  background-repeat: no-repeat;
  background-position: 50%;
  }
