@import url("font.css");

* {
    font-family: "Noto Sans KR" !important;
}

body {
    padding: 0px;
    margin: 0px;
    height: 100vh;
    min-height: 500px;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow:hidden;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 20px;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
}

.row {
    flex: 0;
    padding: 4px 20px;
}

.row-error {
    flex: 0;
    padding: 4px 20px;
    color: red;
}

input {
    width: 100%;
    height: 40px;
    padding: 0px;
    text-indent: 10px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    font-size:15px;
}
input[type='radio'] {
   vertical-align: middle;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: white;
  margin-bottom:6px;
}

input[type='radio']:checked {

  background-color: #111;
  border: 4px solid white;
  box-shadow: 0 0 0 1.5px #111;
}

select {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    font-size:15px;
}

input::placeholder {
 	color: #abb4bd;
}

input:focus {
    outline-color:#5f5f5f;
}

button {
    outline: none;
    background: #000;
    border: 1px solid #000;
    border-radius: 5px;
    color: #fff;
    height: 45px;
    width: 100%;
    font-size:15px;
    cursor: pointer;
    margin-top: 20px;
}

.row-location {
    flex: 0;
    display: flex;
    font-size: 13px;
    padding: 4px 20px;
    flex-direction: row-reverse;
    justify-content: space-between
}

a {
    text-decoration: none;
    color: #494d51;
}

.select, .options li {
    display:flex;
    cursor:pointer;
    align-items:center;
}

.select{
    width: 94%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    font-size:15px;
    background:#a4b4cf;
    color:#ffffff;
    justify-content:space-between;
    margin: 0 auto;
}

.content{
    display:none;
    background:#ffffff;
    margin-top:5px;
    padding:15px;
    border-radius:10px;
}

.active .content {
    display:block;
}

.content .search-box{
    position: relative;
}

.content .options{
    margin-top:5px;
    max-height:100px;
    overflow-y:auto;
    padding: 0;
}

.options::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:25px;
}

.options::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:25px;
}

.options li {
    height:35px;
    border-radius:7px;
}

.options li:hover {
    background:#f2f2f2;
}
.radio-group{
    display:flex;
    gap:15px;
}

.hide{
    display:none;
}
