/**
 * Bejelentkezes
 */
#lostPwdForm {
 display: block;
 margin: 0 auto;
 padding: 20px 0;
 width: 50%;
}
#lostPwdForm fieldset { display: block; padding-bottom: 10px; }
#lostPwdForm fieldset > label { display: block; margin-bottom: 3px; color: #446e4f; font-weight: bold; text-align: center; }
#lostPwdForm > .errorMsg {
 display: none;
 padding-top: 10px;
 width: 100%;
 color: #ff0000;
 text-align: center;
}
#lostPwdForm > .buttonWrapper { padding-top: 20px; text-align: center; }
#lostPwdForm > .buttonWrapper > button {
 padding: 0 30px;
 font-size: 15px;
 color: #fff;
 font-weight: bold;
 line-height: 40px;
 background-color: #c62441;
}
#lostPwdForm > .linkWrapper { padding-top: 30px; text-align: center; }
#lostPwdForm > .linkWrapper > a {
 display: inline-block;
 color: #c62441;
 font-weight: bold;
}

@media only screen and (max-width: 768px) {
 #lostPwdForm { width: 60%; }
}
@media only screen and (max-width: 520px) {
 #lostPwdForm { width: 80%; }
}
@media only screen and (max-width: 420px) {
 #lostPwdForm { width: 100%; }
}