.bgc_white {
    width: 250px;
    padding: 60px;
    margin: auto;
    background-color: white;
    border-radius: 10px;
}.loginform {
    display: flex;
    flex-direction: column;
}
.loginform input:not(.F_Lg) {
    padding: 7px;
    width: calc(100% - 18px);
    color: black;
    background-color: #f4f4f4;
    border: 2px solid #f4f4f4;
}
.loginform input:nth-child(3) {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 25px;
    font-size: 20px;
    color: white;
    border: 0;
    background: #19519e;
    border-radius: 5px;
    border-bottom: 3px solid #0a2142;
    border-right: 3px solid #0a2142;
}
.loginform input:nth-child(3):focus {
  outline: none;
}
.loginform input:nth-child(3):active {
  border: 0;
  background: #194986;
  border-top: 2px solid #0a2142;
  border-left: 2px solid #0a2142;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}
.pagetitle {
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    color: black;
}.loginform input:nth-child(1) {
    margin-bottom: 10px;
}
.loginform input:nth-child(2) {
    margin-bottom: 25px;
}
#find_idpw span:hover{
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .bgc_white{
    width: 80%;
    padding: 30px;
  }
}
