@font-face {
  font-family: 'NeoDunggeunmo';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.3/NeoDunggeunmo.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'IyagiGGC';
  src: url('https://cdn.jsdelivr.net/gh/JuwanPark/IyagiGGC@latest/IyagiGGC.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DKBDinaru';
  src: url('https://cdn.jsdelivr.net/gh/JuwanPark/WebFnts@latest/DKBDinaru.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

p {
  font-size: 24px;

  color: #fff;
}
h2 {
  font-size: 24px;

  color: #fff;
}



button.green, button.black {
  font-family: "DKBDinaru";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0;
  z-index: 1;
  user-select: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: unset;
  padding: 0.8rem 1.5rem;
}

button.green {  
    background-color: #ffffff;
    color: #0000aa;
}

button.green:hover {
  background-color: #0000aa;
  color: #fff;
}  


button.black {
    background-color: #333333;
}
  
 
  


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0000aa;
    flex-direction: column;
    gap: 10px;
    font-family: "DKBDinaru";
}

button.green, button.black {
  min-width: 275px; /* 최소 너비 설정 */
  min-height: 5px;
  max-height: 10px;
  text-align: center; /* 텍스트 가운데 정렬 */
}




/* Input container */
.input-container {
  position: relative;
  margin: 20px;
}

/* Input field */
.input-field {
  display: block;
  width: 100%;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
}

/* Input label */
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgba(204, 204, 204, 0);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #007bff;
  transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus + .input-label {
  top: -20px;
  font-size: 12px;
  color: #007bff;
}

.input-field:focus + .input-label + .input-highlight {
  width: 100%;
}
