@font-face {
    font-family: "Proxima-Nova-Regular";
    src: url("../fonts/Proxima\ Nova\ Regular.otf") format("opentype");
}

@font-face {
    font-family: "Proxima-Nova-Light";
    src: url("../fonts/Proxima\ Nova\ Light.otf") format("opentype");
}

@font-face {
    font-family: "Proxima-Nova-Bold";
    src: url("../fonts/Proxima\ Nova\ Bold.otf") format("opentype");
}

@font-face {
    font-family: "Proxima-Nova-Semibold";
    src: url("../fonts/Proxima\ Nova\ Semibold.otf") format("opentype");
}

:root {
    --pwrred: #B12009;
    --pwrgray: #505050;
    --pwrlightgray: #8F8F8F;
}

html,
body {
    background-color: #ffffff;
    margin: 0;
    font-size: 12px;
    font-family: Proxima-Nova-Regular;
    color: #000000;
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
}

.bold-underline {
    color: #000000;
    font-family: Proxima-Nova-Semibold;
    text-decoration: underline;
}

.background-image {
    width: 80vw;
    min-height: 100vh;
}

.background-image .image-logo {
    position: absolute;
    width: 135px;
    top: 3.5rem;
    left: 6.5rem;
}

.background-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    vertical-align: middle;
}

.content-wrapper {
    flex-grow: 1;
    background-color: #ffffff;
    z-index: 3;
    overflow: auto;
    padding: 28px 0 0 74px;
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    height: 100%;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 1.75rem 0;
}

.header img {
    width: 200px;
}

.header h1 {
    font-size: 1.8rem;
    margin: 3rem 0 0.2rem 0;
    color: var(--pwrgray);
    font-weight: normal;
}

.languages {
    margin-bottom: 1.75rem;
}

.alerts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
}

.alerts .alert {
    padding: 1rem;
    background-color: #FCC1C4;
    font-family: Proxima-Nova-Regular;
    color: var(--pwrgray);
    text-align: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
}

.login-form {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.login-form .fields {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.login-form .fields .field {
    display: flex;
    height: 36px;
    border: 1px solid var(--pwrlightgray);
    width: 298px;
}

.login-form .fields .field .field-icon {
    display: flex;
    padding: 0 0.6rem;
}

.login-form .fields .field img {
    margin: auto;
    width: 20px;
}

.login-form .fields .field input {
    border: none;
    margin-left: 1rem;
    width: 100%;
}

.login-form .fields .field input:focus {
    outline: none;
}

.login-form .fields .field input:focus::placeholder {
    opacity: 0.3;
}

.login-form .actions {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.login-form .actions button.login {
    background-color: var(--pwrred);
    border: 1px solid var(--pwrred);
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 0.73px;
    padding: 0.6rem 1.8rem;
    cursor: pointer;
    width: 124px;
}

.login-form .actions button.clear {
    color: var(--pwrgray);
    background-color: #ffffff;
    border: 1px solid var(--pwrgray);
    font-size: 1.2rem;
    letter-spacing: 0.73px;
    padding: 0.6rem 1.8rem;
    cursor: pointer;
    width: 124px;
}

.login-form .actions button.login:hover {
    opacity: 0.7;
}

.login-form .actions button.clear:hover {
    opacity: 0.7;
    background-color: var(--pwrgray);
    color: #ffffff;
}

.login-form .actions a {
    font-family: Proxima-Nova-Semibold;
    color: inherit;
}

.forgot-password {
    color: #000000;
    font-family: Proxima-Nova-Semibold;
}

.forgot-password:hover {
    opacity: 0.7;
}

.ifno-container {
    max-width: 300px;
    margin-bottom: 3rem;
}

.ifno-container p {
    margin-top: 0;
    text-align: justify;
}

.ifno-container h2 {
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--pwrred);
    font-family: Proxima-Nova-Regular;
}

.credits {
    margin: auto auto 4rem 0;
    justify-content: center;
    font-family: Proxima-Nova-Light;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pwrred);
    width: 300px;
}

a {
    color: #000000;
    font-family: Proxima-Nova-Semibold;
    text-decoration: underline;
}

a:hover,
a:focus {
    opacity: 0.7;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
label.field:focus-within,
input[type="submit"]:focus-visible {
    outline: 3px solid #1a73e8 !important;
    outline-offset: 0px;
}

@media (max-width: 782px) {
    .background-image {
        display: none;
    }

    .content-wrapper {
        padding-left: 0;
    }

    .content {
        margin: 0 auto 0 auto;
    }
}
