.login-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: var(--color-azul);
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-family: MusticaPro-Light;
}

.home-btn:hover {
    background-color: var(--color-azul-hover);
}

.home-btn img {
    height: 1.5rem;
    width: auto;
    margin-right: 0.5rem;
    filter: brightness(0) saturate(100%) invert(76%) sepia(66%) saturate(0%) hue-rotate(271deg) brightness(93%) contrast(96%);
}

.login-content {
    box-sizing: border-box;
    background-color: var(--color-azul);
    width: 30rem;
    padding: 0 4rem 4rem 4rem;
    border-radius: 0.5rem;
    position: relative;
    z-index: 2;
}

.login-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.login-head img {
    height: 7rem;
    width: auto;
}

.login-head h1 {
    font-size: 2.5rem;
    font-family: MusticaPro-Light;
    color: white;
}

.login-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: MusticaPro-Light;
    color: var(--color-naranja);
    font-size: small;
}

.form-footer a {
    text-decoration: none;
    color: var(--color-naranja);
}

.field-wrapper {
    margin-bottom: 1rem;
}

.field-wrapper input {
    width: 100%;
    box-sizing: border-box;
}

.username-input {
    background: url('/static/img_index/accounts/user.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 5px center;
}

.password-input {
    background: url('/static/img_index/accounts/password.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 5px center;
}

.username-input,
.password-input {
    border: none;
    background-color: var(--color-naranja);
    border-radius: 0.2rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    color: white;
}

.username-input::placeholder,
.password-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    margin-bottom: 0.5rem;
    background-color: var(--color-gris);
    padding: 0.5rem;
    border-radius: 0.3rem;
    border: none;
    color: white;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: var(--color-gris-hover);
}

.chevron {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.chevron img {
    height: 2rem;
    width: auto;
}

.links-container {
    background-color: var(--color-naranja);
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    width: 23rem;
    border-radius: 0 0rem 1rem 1rem;
    align-items: center;
}

.links-container a {
    color: white;
    font-family: MusticaPro-Light;
    font-size: 1rem;
}

.error {
    margin-top: 0.1rem;
    font-family: MusticaPro-Light;
    font-size: small;
    text-align: center;
}