:root {
    --error-bg: #ffedae;
    --primary-color-bis: #050a30;
    --primary-color: #53249b;
    --background-color: #fff;
    --navbar-max-width: 56rem; /*1300px*/
    --content-max-width: 400px;
    --button-radius: 8px;
    --dark: #050a30;
    --primary-text-color: #210053;
    --border-color: #e5e7eb;
}

html, body {
    height: 100%;
    margin: 0;
    background-color: var(--background-color);
}

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#lycalo-app {
    padding: 0 24px;
}

#lycalo-nav {
    display: flex;
    min-height: 80px;
    align-items: center;
    max-width: var(--navbar-max-width);
    border-bottom: 1px solid var(--border-color);
    margin: 0 auto;
}

#lycalo-link {
    height: auto;
}

#lycalo-logo {
    height: 38px;
}

@media only screen and (max-width: 500px) {
    #lycalo-logo {
        height: 30px;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 14px;
    color: var(--primary-text-color);
}

.input {
    display: block;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    height: 36px;
    color: #212529;
    background-color: #fafbfc;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input:hover {
    border-color: #acaeb3;
}

.input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.input:focus:focus-visible {
    color: #495057;
    background-color: #fff;
    border-color: #b2caf8;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(61, 121, 238, .25);
}

.validation-error {
    color: #f87171;
    font-size: 12px;
    font-weight: 500;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-1 {
    flex: 1;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.error-content {
    background: var(--error-bg);
    border-radius: 10px;
    padding: 1.5em 1.5em;
    gap: 10px;
    margin-bottom: 2rem;
}