*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
label{
    color: #333;
    font-size: 13px;
}
input, textarea, select, button{
    padding: 12px;
    display: block;
    margin: 5px 0;
    outline: none;
    border-radius: 2px;
    border: 2px solid #ccc;
}
input, textarea, select{
    width: 100%;
    font-size: 14px;
}
input:hover, textarea:hover, select:hover{
    border-color: #aaa;    
}
input:focus, textarea:focus, select:focus{
    border-color: #ff5b15;
}
button{
    cursor: pointer;
}
.redBtn{
    background-color: rgb(207, 0, 0);
    color: #fff;
}
.greenBtn{
    background-color: rgb(52, 207, 0);
    color: #fff;
}
.primeBtn{
    background-color: #ff5b15;
    color: #fff;
    border: none;
    box-shadow: 0 0 10px -7px #333;
    transition: .2s;
    padding: 12px 16px;
}
.primeBtn:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ff5b15;
}
.primeBtn:active{
    transform: scale(.94);
}
form{
    background-color: #fff;
    padding: 10px 0;
}
fieldset{
    padding: 20px;
    border: 0;
}
legend{
    display: block;
    font-weight: bold;
    padding: 10px 0 0;
    color: #333;
    width: 100%;
}
.twoCol{
    display: grid;
    grid-template-columns: 1fr;
}
.btnCont{
    display: flex;
}
.btnCenter{
    justify-content: center;
}
.btnRight{
    justify-content: flex-end;
}
@media only screen and (min-width: 900px) {
    .twoCol{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
a{
    text-decoration: none;
    color: #ff8f8f;
}
a:hover{
    color: #333;
}
body{
  background-image: linear-gradient(45deg, #fffff6, rgb(255, 242, 207));
  background-size: 20px 20px;
}
.inp-cont{
    margin-bottom: 20px;
    position: relative;
}
.inp-mes{
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
}
.red{
    color: #f00;
}
.green{
    color: rgb(0, 194, 0);
}
.logo-cont{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.logo-cont img{
    max-width: 180px;
}
.logo-cont p{
    background-color: rgb(186, 28, 0);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.nav-cont{
    padding: 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.regForm{
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.form-title{
    font-weight: initial;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}
.regSuc{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #0f0;
    padding: 20px 0;
}
.regSuc .fa{
    font-size: 48px;
}
.pwdC{
    position: relative;
}
.pwdC input{
    padding-right: 58px;
}
#showPwd{
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #eee;
    color: #666;
    line-height: 40px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 48px;
    text-align: center;
    cursor: pointer;
}
#showPwd:hover{
    color: #333;
}
.loginC{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
main{
    padding: 10px;
}
.nowrap{
    white-space: nowrap;
}