* {
    outline-width: 0;
    font-family: "Nunito" !important;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#formContainer {
    display: flex;
    transition: 0.2s ease;
    height: 342.5px;
    transition-delay: 0.3s;
}

#formContainer.toggle {
    transition-delay: 0s;
}

.formLeft {
    background: #fff;
    border-radius: 5px 0 0 5px;
    padding: 0 35px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.formLeft img {
    display: block;
    width: 72px;
    border-radius: 50%;
}

.formRight {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.formRight:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #fff;
    filter: blur(5px);
}

.formRight form {
    position: relative;
    width: 350px;
    padding: 25px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
}

.formRight form header {
    color: #000;
    margin-bottom: 15px;
}

.formRight form header h1 {
    margin: 0;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 20px;
}

.formRight form header p {
    margin: 5px 0 0;
    color: red;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.formRight form section label {
    display: block;
    margin-bottom: 15px;
    position: relative;
}

.formRight form section label p {
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 12px;
    color: red;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.formRight form section label input {
    font-size: 16px;
    font-weight: 300;
    height: 50px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.1);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: none;
}
.formRight form section label input:focus {
    box-shadow: none;
    border-color:#66512c;
    -webkit-box-shadow:#66512c 0 1px 1px rgba(0,0,0,.075);
    box-shadow:#66512c 0 1px 1px rgba(0,0,0,.075);
}

.formRight form section label input:hover {
    box-shadow: none;
    border-color:#66512c;
    -webkit-box-shadow:#66512c 0 1px 1px rgba(0,0,0,.075);
    box-shadow:#66512c 0 1px 1px rgba(0,0,0,.075);
}

.formRight form section label input:focus~.border {
    transform: scale(1, 1);
}

.formRight form section label input:not(:-moz-placeholder-shown)~.border {
    transform: scale(1, 1);
}

.formRight form section label input:not(:-ms-input-placeholder)~.border {
    transform: scale(1, 1);
}

.formRight form section label input:not(:placeholder-shown)~.border {
    transform: scale(1, 1);
}

.formRight form section label .border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transition: 0.2s ease;
}

.formRight form section label:last-child {
    margin-bottom: 0;
}

.formRight form section button {
    height: 50px;
    padding-right: 20px;
    padding-left: 20px;
    border: none;
    background: #3cc;
    color: #fff;
    box-shadow: -2px 10px 20px -1px rgb(51 204 204 / 40%);
    border-radius: 5px;
}

.formRight form section button:hover {
    color: #fff;
    background: #47d1d1!important;
    outline: none;
}

.formRight form footer {
    margin-top: 15px;
    display: flex;
    width: 120px;
    justify-content: flex-start;
}

.formRight form footer button {
    background: transparent;
    border: 1px solid rgb(0, 255, 200);
    padding: 0;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;

}

.formRight form footer button:hover {
    opacity: 1;
}

.formRight form.otherForm {
    top: 0;
    left: 0;
    position: absolute;
    background: #fff;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 0;
    padding: 25px 0;
    transition: 0.2s ease;
    transition-delay: 0.2s;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.formRight form.otherForm header {
    color: #000;
    opacity: 0;
    transition: 0.2s ease;
    transition-delay: 0s;
}

.formRight form.otherForm p {
    color: #000;
}

.formRight form.otherForm section {
    opacity: 0;
    transition: 0.2s ease;
    transition-delay: 0s;
}

.formRight form.otherForm footer {
    opacity: 0;
}

.formRight form.otherForm footer button {
    color: #000;
}

.formRight form.otherForm input {
    color: #000;
}

.formRight form.otherForm .border {
    background: #000;
}

.formRight form.otherForm.toggle {
    width: 100%;
    padding: 25px;
    transition-delay: 0s;
}

.formRight form.otherForm.toggle header,
.formRight form.otherForm.toggle section,
.formRight form.otherForm.toggle footer {
    opacity: 1;
    transition-delay: 0.3s;
}