/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Apr 16, 2026, 1:48:54 PM
    Author     : dericocavallini
*/

.main-content {
    min-height: 90vh;
    padding: 1rem;
}

#form.login-panel {
    width: 100%;
    max-width: 300px;
}

#form\:email, #form\:password, #form\:login {
    width: 100%;
}

/* V1.1 — "back to directory" affordance (directory is the app's landing page) */
.login-directory-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.25rem 0 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--surface-border, #d9d5cc);
    border-radius: 999px;
    color: var(--text-color-secondary, #6b6152);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.login-directory-link:hover {
    color: var(--primary-color, #1a6847);
    border-color: var(--primary-color, #1a6847);
    background: rgba(26,104,71,0.06);
    text-decoration: none;
}
/* UX-15 — the "contact us" affordance was <a href="#"> driving a dialog, which is
   not a link (WCAG 4.1.2: no href target, keyboard semantics wrong). It is a <button>
   now; this restores the inline-link appearance using the same tokens the rest of
   this file uses, so nothing bespoke is introduced. */
.mln-linkish {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--primary-color, #1a6847);
    text-decoration: underline;
    cursor: pointer;
}
.mln-linkish:hover {
    color: var(--primary-700, #14523a);
}
.mln-linkish:focus-visible {
    outline: 2px solid var(--primary-color, #1a6847);
    outline-offset: 2px;
    border-radius: 2px;
}
