body {
    background-color: #f5f5f5;
    font-family: 'Nunito Sans', sans-serif;
}

.sign-in-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10vh;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 1200px) {
    .sign-in-wrapper {
        justify-content: center;
        margin-top: 0;
    }
}

.sign-in {
    background-color: #FFFFFF;
    padding: 16px;
    width: 330px;
    border-radius: 10px;
    position: relative;

    box-shadow: 0px 122px 40px -10px rgba(9, 44, 76, 0.1);
}

h1, h2 {
    text-align: center;
}

h1 {
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.03em;
    color: #092C4C;
    margin-top: 16px;
}

h2 {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #092C4C;
    margin-bottom: 50px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    border: 0.7px solid #D0D0D0;
    box-sizing: border-box;
    border-radius: 8px;
    display: block;
    padding: 14px;
    color: #092C4C;
    font-size: 16px;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #ABB3BB;
}

input {
    margin-bottom: 16px;
}

.button-wrapper {
    text-align: center;
}

.button-wrapper > button,
.button-wrapper > .button {
    width: 100%;
    color: #54480C;
    font-size: 14px;

    background-size: 250% 250%;
    background: linear-gradient(88.75deg, #FFCF57 0.18%, #FFB600 99.28%);
    border-radius: 8px;

    border: none;
    padding: 15px;

    box-shadow: 0px 20px 40px -10px rgba(9, 44, 76, 0.1);

    margin-bottom: 32px;
}

.button-wrapper > button:hover {
    background: linear-gradient(75.75deg, #ecc45e 0.18%, #FFB600 99.28%);
}

.back-button {
    color: #999;
}

a {
    color: #FC6D5B;
    text-decoration: none;
}

a:hover {
    color: #FC6D5B;
    text-decoration: underline;
    cursor: pointer;
}

.split {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.remember-me {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #828a92;
    vertical-align: center;
}

#remember {
    border: 0.7px solid #D0D0D0;
    box-sizing: border-box;
    border-radius: 4px;
    height: 14px;
    width: 14px;
}

.company {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.03em;

    color: #092C4C;
    position: relative;
    margin-bottom: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    display: inline-block;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

.forgot-password {
    font-size: 12px;
}

#login-error {
    text-align: center;
}
#login-error p {
    line-height: normal;
    margin: 0px;
    color: #fd3c3c;
    padding: 0 10px 10px;
}