@import url('https://fonts.googleapis.com/css2?family=Barriecito:wght@400;600;700&display=swap');

[x-cloak] {
    display: none !important;
}

/* TailwindCSS-like default input styles */
input:not(.tw),
textarea:not(.tw),
select:not(.tw) {
    width: 100%;
    padding: 0.5rem 0.75rem; /* py-2 px-3 */
    font-size: 1rem; /* text-base */
    line-height: 1.5;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-md */
    background-color: #ffffff; /* bg-white */
    color: #111827; /* text-gray-900 */
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0ea5a4; /* border-primary / teal-500 */
    box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.3); /* ring effect */
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af; /* placeholder-gray-400 */
}

button:not(.tw),
input[type="submit"]:not(.tw) {
    cursor: pointer;
    border-radius: 0.3rem;
    background-image: linear-gradient(to right, #ffa77a, #ff8c5c);
    color: white;
    padding: 0.2rem 0.3rem;
    border: none;
    transition: background-color 0.2s;
}

button:hover,
input[type="submit"]:hover {
    background-image: linear-gradient(to right, #ffa77a, #ff8c5c);
}

a:not(.tw) {
    color: #1d4ed8;
}

a.no-underline {
    text-decoration: none;
}

.errorlist {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-width: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fee2e2;
    border-color: #fecaca;
    color: #b91c1c;
}


.logo {
    font-family: 'Barriecito', sans-serif;
    background: linear-gradient(to right, #ffa77a, #ff8c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.primary-gradient {
    background-image: linear-gradient(to right, #ffa77a, #ff8c5c);
}

.primary-color {
    background: #ff8c5c;
}

/* LOGIN */
#id_remember {
    width: auto;
}
