/* Override some defaults */

body {
    /*padding-top: 40px;*/
    height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
}

body::before {
    content: "";
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    max-width: 1320px;
    z-index: 999;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* The white background content wrapper */

.container>.content {
    background-color: transparent;
    padding: 12px;
    margin: 0 0px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.login-form {
    margin-left: 0px;
    padding: 24px;
    background: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    background-color: rgba(255, 255, 255, .4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-form form {
    width: 100%;
}

.login-form form .clearfix {
    display: flex;
}

legend {
    margin-right: -50px;
    font-weight: bold;
    color: #333;
}

.logo {
    margin-bottom: 10px;
    object-fit: contain;
    width: 100%;
    height: auto;
}

h3 {
    margin-bottom: 10px;
    text-align: center;
    color: white;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 12px;
    width: 100%;
}

.primary {
    margin-top: 12px;
    background: #f6a800;
    color: #fff;
    text-shadow: none;
    border: none;
    width: 100px;
    height: 40px;
    text-transform: uppercase;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    opacity: .9;
}

.primary:hover {
    background: #f6a800;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

input {
    width: 97%;
    font-size: 14px;
    height: 22px;
    line-height: 22px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border-bottom: solid 1px white;
    background: transparent;
    color: white;
}

input:focus,
textarea:focus {
    border-bottom-color: #f6a800;
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(82, 168, 236, 0);
    -moz-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(82, 168, 236, 0);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(82, 168, 236, 0);
    outline: 0;
    outline: thin dotted \9;
}

input::placeholder {
    color: white;
}

button {
    width: 100% !important;
    font-size: 14px !important;
    letter-spacing: 1px;
}

#icon {
    position: absolute;
    right: 10px;
    top: 15px;
    transform: translate(0px, -50%);
    cursor: pointer;
    color: white;
}