<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  letter-spacing:-0.02em;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgb(227, 227, 227);
}

h3 {margin:20px 0 5px 0;}
h5 {color:#ff0000; margin-bottom:30px;}

.top-logo {
	position:absolute; 
	top:0; 
	text-align:center;
	margin-top:50px;
}
.container {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #fff;
  margin-top:140px;
  padding: 60px 60px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container header {
  font-size: 1.8rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.container .form {
  margin-top: 45px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #333;
  font-weight:600;
}
.label-required::after {
  content: " *";
  color:#ff0000;
  font-weight:400;
}

.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.input80 {
  width: 80% !important;
}
.input70 {
  width: 70% !important;
}
.input60 {
  width: 60% !important;
}
.button40 {
	width: 40% !important;
	margin-top:8px !important;
	height: 50px !important;
}
.button30 {
	width: 30% !important;
	margin-top:8px !important;
	height: 50px !important;
}
.button20 {
	width: 20% !important;
	margin-top:8px !important;
	height: 50px !important;
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  background:#EAEDF7;
  padding:15px 30px;
  border-radius: 600px;
  border:1px solid #BAC4E4;
  margin-bottom:40px;
}
.gender-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: rgb(49, 67, 126);
  --size: 1.5rem;
  block-size: var(--size);
  inline-size: var(--size);
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #333;
  font-weight:600;
  margin-left:4px;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgb(49, 67, 126);
  border-radius: 6px;
}
.form button:hover {
  background: rgb(43, 53, 87);
}

/* �곷떒 �쇱씤 style */
.boxstyle1 {
	border-top:10px solid #eee;
	padding-top:10px;
}
.boxstyle2 {
	border-top:1px solid #D0D0D0;
	padding-top:20px;
}
/*Responsive*/
@media screen and (max-width: 768px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
  .input60 {width:100% !important;}
  .button40 {width:100% !important;}
  .input70 {width:100% !important;}
  .button30 {width:100% !important;}
  .input80 {width:100% !important;}
  .button20 {width:100% !important;}
}
</pre></body></html>