
.login {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

.login #login {
    background-color: white;
    padding: 40px 40px;
    width: 450px;
    border-radius: 10px;
}

.login form {
    box-shadow: none;
    border: none;
    margin: 0px;
    padding: 0px;
}

.login form .input, .login input[type=password], .login input[type=text] {
    font-family: "Product Sans","open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #c7d2e3;
    padding: 14px 22px;
    font-size: 18px;
    line-height: 22px;
    border: 2px solid #c7d2e3;
    border-radius: 8px;
}

.login form .input:focus-visible, .login form .input:focus {
    outline: none !important;
    border: 2px solid #c7d2e3;
    border-radius: 8px;
}

.login label {
    font-family: "Product Sans","open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #5a5f66;
}

.login form .input:-internal-autofill-selected,
.login form .input:-webkit-autofill,
.login form .input:-webkit-autofill:hover,
.login form .input:-webkit-autofill:focus,
.login form .input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: #5a5f66;
    border: 2px solid #5a5f66;
}

.login form .forgetmenot {
    width: 100%;
    margin: 20px 0 !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#login form p.submit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

#login form p.submit #wp-submit {
    font-family: "Product Sans","open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 18px;
    padding: 15px 20px;
    width: 100%;
    background-color: #0060ff;
    border-radius: 100px;
    transition: all 0.3s ease;
}

#login form p.submit #wp-submit:hover {
    background-color: #303338;
}


.login #nav {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.login #nav a {
    font-family: "Product Sans","open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #0060ff;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.login #nav:hover a {
    border-bottom: 1px solid #0060ff;
}
.login #backtoblog {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.login #backtoblog a {
    font-family: "Product Sans","open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #5a5f66 !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: normal;
}
.login #backtoblog:hover a {
    font-weight: bold;
}

.login .privacy-policy-page-link {
    display: none;
}