.loginRegContainer {
    font-family: Helvetica, sans-serif;
    width: 432px;
    margin: 0 auto;
    margin-top: 80px;
    background-color: #F2F2F2;
    border-radius: 20px;
    text-align: center;
    box-shadow: 1px 1px 5px rgb(163, 163, 163);
}

.loginRegTitle {
    display: flex;
    justify-content: center;

    background: #DDEEFF;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 20px 20px 0px 0px;
}

.loginRegTitle .loginTitle {
    margin: 0;
    margin-bottom: 5px;
    font-size: 20px;
    color: #474747;
}


.loginRegTitle #loginTitle {
    margin-right: 5px;
}

.loginRegTitle .registerBtn {
    font-size: 20px;
    color: rgb(128, 128, 128);
}

.loginContainer {
    transition: .4s ease;
}

.inp {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 180px;
    border-radius: 3px;
    overflow: hidden;
}

.inp .label {
    position: absolute;
    top: 0px;
    left: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
    pointer-events: none;
}

.inp .focus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
}

.inp input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 24px 12px 12px 12px;
    font-size: 16px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    color: #000;
    transition: all 0.15s ease;
}

.inp input:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.inp input:not(:-moz-placeholder-shown)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -24px, 0) scale(0.75);
}

.inp input:not(:-ms-input-placeholder)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -24px, 0) scale(0.75);
}

.inp input:not(:placeholder-shown)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -24px, 0) scale(0.75);
}

.inp input:focus {
    background: rgba(0, 0, 0, 0.05);
    outline: none;
    box-shadow: inset 0 -2px 0 #7393b3;
}

.inp input:focus+.label {
    color: #7393b3;
    transform: translate3d(0, -24px, 0) scale(0.75);
}

.inp input:focus+.label+.focus-bg {
    transform: scaleX(1);
    transition: all 0.1s ease;
}


.loginBtn {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: bold;
    background: #ddeeff;
    width: 100%;
    padding: 6px 20px;
    border: none;
    transition: .4s ease;
    color: #474747;
}

.loginBtn:hover {
    background: #c3d6e9;
    cursor: pointer;
}

.regBtn {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: bold;
    background: #cddae7;
    width: 100%;
    padding: 6px 20px;
    border: none;
    transition: .4s ease;
    color: #474747;
    border-radius: 0px 0px 20px 20px;

}

.regBtn:hover {
    background: #c3d6e9;
    cursor: pointer;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    text-decoration: none;

}

.inp .unmask {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-65%);
    width: 25px;
    height: 25px;
    cursor:pointer;
    border: none;
    -webkit-appearance:none;
    right: 6%;
    border: none;
    background: transparent;
  }
  
  .inp .unmask img {
    width:28px;
  }

.formInputTxt {
    padding: 3px 5px;
    outline: none;
    border: none;
    border-bottom: 1px solid #c3d6e9;
}