/* @font-face {
    font-family: SFProDisplay-Bold;
    src: url(font/SF-Pro-Display-Bold.otf);
}
@font-face {
    font-family: SFProText-Regular;
    src: url(font/SF-Pro-Text-Regular.otf);
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: SFProText-Regular, Helvetica, Arial, sans-serif;
}
h1 {
    font-family: SFProDisplay-Bold, Helvetica, Arial, sans-serif;
    /* font-weight: bold;  */
}
body {
    height: 100vh;
    width: 100%;
    background: #F0F2F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #dddfe2;
    color: #1d2129;
    font-size: 17px;
    border-radius: 5px;
    outline: none;
    /* outline-color: #8AB7EF; */
}

hr {
    background-color: rgba(229, 228, 228, 0.349);
    opacity: 15%;
    height: 0.01vw;

}

/* //signup design */
.signup {
    z-index: 100;
    background: #fff;
    width: 432px;

    /* padding: 0 15px; */
    padding-bottom: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
}

.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
}

.top>div>h2 {
    font-size: 32px;
    font-weight: bold;
    font-family: sans-serif;

}

.top>div>p {
    color: #606770;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 24px;
}

.top img {
    padding-bottom: 35px;
    cursor: pointer;
    width: 25px;
}

.signup_body {
    display: flex;
    flex-wrap: wrap;
    padding: 0 15px;
}

.signup_form .same {
    padding: 10px;
    outline: none;
    width: 50%;
    font-size: 15px;

}

#name-input {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
#name-input div{
    display: flex;
    flex-direction: column;
}
#name-input input{
    border-radius: 8px;
    font-size: 15px;
    padding: 10px;
}
#email-password-input input {
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 15px;
    border-radius: 8px;
}

#birthday-input {
    padding: 0 15px;

}

#birthday-input select {
    padding: 7px 35px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.458);

}

.date {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

#gender-input {
    padding: 0 15px;
}

.person {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;

}

.person>div {
    border: 1px solid rgba(0, 0, 0, 0.458);
    padding: 7px;
    display: flex;
    font-size: 16px;
    gap: 15px;
    border-radius: 3px;
}

.person label {
    margin-right: 10px;
}

.content {
    padding: 0 15px;
}

.content p {
    margin: 10px 0;
    font-size: 12px;
    font-family: sans-serif;
}

.text {
    font-size: 12px;
    font-family: sans-serif;
}

.signin {
    height: 36px;
    width: 194px;
    background-color: rgb(0, 164, 0);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin: auto;
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%); */
    margin-left: 118px;
    font-size: 17px;
    cursor: pointer;
}
a {
    color: rgb(56, 88, 152);
}
.warner-paragraph{
    font-size: small;position: relative;
    padding: 1px 18px;
    color: red;
}
