/* ArtifactScan – apply.css
   Styled to match public.css */
.ac-public-page{
	    min-height: calc(100vh / 0.85) !important;

}
.ac-apply-wrap {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.ac-apply-card {
    display: block;
    background: #fff;
    border: 1px solid #dde3ef;
    border-radius: 14px;
    padding: 24px;
    color: inherit;
    box-shadow: 0 4px 20px rgba(67,56,202,.06);
}

.ac-apply-card__head {
    margin-bottom: 20px;
}

.ac-apply-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4338ca;
    margin-bottom: 10px;
}

.ac-apply-card__head h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0d1117;
    margin: 0 0 10px;
}

.ac-apply-card__head p {
    font-size: .95rem;
    line-height: 1.65;
    color: #52607a;
    margin: 0;
    max-width: 720px;
}

.ac-apply-form {
    display: grid;
    gap: 18px;
}

.ac-apply-field {
    display: block;
}

.ac-apply-field label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 7px;
}

.ac-apply-field label span {
    color: #ef4444;
}

.ac-apply-field input {
    width: 100%;
    height: 46px;
    border: 1px solid #c5cedf;
    border-radius: 10px;
    padding: 0 14px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    color: #0f172a;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.ac-apply-field input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

.ac-apply-field small {
    display: block;
    margin-top: 7px;
    font-size: .78rem;
    line-height: 1.45;
    color: #64748b;
}

.ac-apply-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* Buttons styled to match your palette */
.ac-apply-btn,
.ac-apply-link-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 10px;
    height: 42px;
    padding: 0 16px;
    font: inherit;
    font-size: .9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .15s ease;
}

.ac-apply-btn {
    background: #4338ca;
    color: #fff;
    border-color: #4338ca;
}

.ac-apply-btn:hover {
    background: #3730a3;
    border-color: #3730a3;
    color: #fff;
    text-decoration: none;
}

.ac-apply-link-btn {
    background: #fff;
    color: #4338ca;
    border-color: #d7deea;
}

.ac-apply-link-btn:hover {
    background: #f8fafc;
    border-color: #a5b4fc;
    color: #3730a3;
    text-decoration: none;
}

/* Notices */
.ac-apply-notice {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.ac-apply-notice--success {
    background: #d1fae5;
    border-color: #a7f3d0;
    color: #065f46;
}

.ac-apply-notice--error {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}

@media (max-width: 640px) {
    .ac-apply-card {
        padding: 18px;
        border-radius: 12px;
    }

    .ac-apply-card__head h1 {
        font-size: 1.25rem;
    }

    .ac-apply-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ac-apply-btn,
    .ac-apply-link-btn {
        width: 100%;
    }
}