body {
    background-color: #A6D4DF;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

#bhgyImg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid black;
    transition: transform 0.5s ease;
}

#bhgyImg:hover {
    transform: scale(1.05);
}

#registerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}

#registerWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5%;
    padding: 10%;
    width: 100%;
    min-width: 200px;
}

#registerTitleWrapper {
    margin-bottom: 20px;
}

#registerInfoWrapper {
    display: flex;
    width: 300px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#registerInfo {
    font-size: small;
    color: red;
}


#registerEmailWrapper {
    margin-bottom: 5px;
}
#email {
    border-radius: 10px;
    width: 300px;
    height: 30px;
    margin-bottom: 2px;
    padding-left: 5px;
}

#registerNicknameWrapper {
    margin-bottom: 5px;
}
#nickname{
    border-radius: 10px;
    width: 300px;
    height: 30px;
    margin-bottom: 2px;
    padding-left: 5px;
}

#registerPasswordWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}
#password {
    border-radius: 10px;
    width: 300px;
    height: 30px;
    margin-bottom: 2px;
    padding-left: 5px;
    margin-bottom: 5px;
}
#confirmPwd {
    border-radius: 10px;
    width: 300px;
    height: 30px;
    margin-bottom: 2px;
    padding-left: 5px;
}


#registerBtnWrapper{
    width: 310px;
}
#registerBtn {
    border-radius: 10px;
    width: 100%;
    height: 30px;
    background-color: skyblue;
    margin-bottom: 10px;
}

#registerBtn:hover {
    background-color: rgb(109, 194, 227);
}

#loginWrapper {
    font-size: small;
    margin-bottom: 5px;
}

#loginBtn {
    color: black;
    text-decoration: none;
}

#loginBtn:hover {
    text-decoration: underline;
}