body {
    background: url("/img/auth_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    background-color: #647c90;
    padding: 24px 64px;
    display: flex;
}

.header .shop-logo {
    padding: 12px 0;
    width: 18%;
}

.header .shop-name {
    padding: 0 42px;
    width: 100%;
    text-align: center;
}

.header .shop-name h1 {
    color: white;
    text-transform: uppercase;
    font-size: 52px;
    font-weight: bold;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.main {
    margin-top: 32px;
    padding: 0 64px;
    display: flex;
}

.main .login-loc {
    width: 100%;
    opacity: 0.95;
}

.main .title {
    letter-spacing: 5px;
    color: rgba(27, 27, 27, 1);
    width: 100%;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 48px;
}

.main .login-loc {
    height: 50%;
    display: flex;
    justify-content: center;
}

.main .login-loc .heading {
    border-bottom: 1px solid rgb(0, 48, 96);
    color: rgb(0, 48, 96);
    margin-top: 12px;
    margin-bottom: 36px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
}

.main .login-loc .content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    width: 640px;
    text-align: center;
    box-shadow: 0px 4px 6px 1px rgba(27, 27, 27, 0.3);
}

.main .login-loc .content form div {
    display: flex;
}

.main .login-loc .content form div span {
    opacity: 0.5;
    position: absolute;
}

.content form span {
    transition: 0.3s linear;
}

.main .login-loc .content .main-content {
    display: flex;
    justify-content: center;
}

.main .login-loc .content form {
    width: 80%;
}

.main .login-loc .content form input,
select {
    border: none;
    border-bottom: 1px solid rgb(0, 48, 96);
    height: 25px;
    width: 100%;
    margin-bottom: 32px;
    outline-color: rgb(0, 48, 96);
    background-color: unset;
}

.main .login-loc .content form div:focus-within span,
.main .login-loc .content form div input:valid~span {
    color: rgb(8, 44, 80);
    opacity: 1;
    transform: translateX(-6px) translateY(-22px);
}

.main .login-loc .content form div select:valid~span {
    color: rgb(8, 44, 80);
    opacity: 1;
    transform: translateX(-6px) translateY(-22px);
}

.main .login-loc .content form button {
    box-shadow: 0px 2px 3px 1px rgba(27, 27, 27, 0.3);
    background-color: rgb(0, 48, 96, 0.9);
    color: white;
    border: none;
    border-radius: 2px;
    padding: 8px 25px;
    font-weight: 400;
    margin-top: 24px;
}

footer {
    color: rgb(23, 23, 23);
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.error-msg {
    margin-top: 16px;
    color: red;
    font-weight: 400;
}

footer {
    align-self: center;
}

footer div {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 24px;
    /* margin-top: 12px; */
}

footer img {
    height: 54px;
    border-radius: 2px;
}

footer a {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 46px;
    color: tomato;
}