body {
    background-color: #A6D4DF;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

#bhgyImg {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid black;
    transition: transform 0.5s ease;
}

#bhgyImg:hover {
    transform: scale(1.05);
}

#loginContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}

#loginWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5%;
    padding: 10%;
    width: 100%;
    min-width: 200px;
}

#loginTitleWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
}

#loginInfoWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin-bottom: 10px;
}

#loginInfo {
    font-size: small;
    color: red;
}

#loginInputWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}

#loginInputForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

#email {
    border-radius: 10px;
    width: 300px;
    height: 30px;
    margin-bottom: 2px;
    padding-left: 5px;
}

#password {
    border-radius: 10px;
    width: 300px;
    height: 30px;
    margin-bottom: 2px;
    padding-left: 5px;
}

#loginBtn {
    border-radius: 10px;
    width: 100%;
    height: 30px;
    background-color: skyblue;
    margin-bottom: 5px;
}

#loginBtn:hover {
    background-color: rgb(109, 194, 227);
}

#registerWrapper {
    font-size: small;
    margin-bottom: 5px;
}

#registerBtn {
    color: black;
    text-decoration: none;
}

#registerBtn:hover {
    text-decoration: underline;
}

#findPwdWrapper {
    font-size: small;
}

#forgotpasswordBtn {
    color: black;
    text-decoration: none;
}

#forgotpasswordBtn:hover {
    text-decoration: underline;
}