/*
    Kitty Kissed Photography
    Authentication and shared form styling
*/

.client-access-grid-wide {
    width: min(94%, 1180px);
}

.client-form-errors,
.client-form-success {
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: 18px;
    text-align: left;
}

.client-form-errors {
    border: 1px solid rgba(247, 180, 210, 0.26);
    background: rgba(247, 180, 210, 0.08);
    color: #F7B4D2;
}

.client-form-success {
    border: 1px solid rgba(126, 217, 164, 0.26);
    background: rgba(126, 217, 164, 0.08);
    color: #BFEFD1;
}

.client-form-errors p,
.client-form-success p {
    margin: 0;
    line-height: 1.6;
}

.client-form-errors p {
    color: #F7B4D2;
}

.client-form-success p {
    color: #BFEFD1;
}

.client-form select,
.client-form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 16px;
    border: 1px solid rgba(247, 180, 210, 0.20);
    background-color: rgba(26, 26, 29, 0.90);
    color: #F5F5F5;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.client-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #F7B4D2 50%), linear-gradient(135deg, #F7B4D2 50%, transparent 50%);
    background-position: calc(100% - 22px) 52%, calc(100% - 15px) 52%;
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
    padding-right: 46px;
}

.client-form textarea {
    min-height: 180px;
    resize: vertical;
}

.client-form select:focus,
.client-form textarea:focus {
    outline: none;
    border-color: #F7B4D2;
    box-shadow: 0 0 12px rgba(247, 180, 210, 0.14);
}

.client-form textarea::placeholder {
    color: rgba(184, 184, 184, 0.72);
}

.optional-label {
    color: #B8B8B8;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.contact-form {
    max-width: 760px;
    margin: 30px auto 0;
}

.client-remember-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    color: #B8B8B8;
    font-size: 0.92rem;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.client-remember-row input {
    width: auto;
    accent-color: #F7B4D2;
}

.admin-logout-button {
    border: 2px solid #F7B4D2;
    background: transparent;
    font-family: 'Montserrat', Arial, sans-serif;
    cursor: pointer;
}

.admin-logout-button:hover {
    background: #F7B4D2;
    color: #1A1A1D;
}
