﻿html, body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
    color: #111;
}

.public-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 30px 30px 30px;
}

.logo-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.public-logo {
    width: 82%;
    max-width: 700px;
    height: auto;
}

/*.content-row {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}*/

/*.content-box {
    flex: 1;
    font-size: 28px;
    line-height: 1.25;
}*/

/*    .content-box p {
        margin: 0 0 34px 0;
    }*/

/*.action-column {
    width: 275px;
    padding-top: 320px;
}*/

.content-box {
    max-width: 780px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.25;
}

.action-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    min-width: 160px;
    box-sizing: border-box;
    padding: 10px 18px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 23px;
}

    .action-button:hover {
        background: #f2f7fb;
    }

.action-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer {
    margin-top: 60px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
}

    .footer a {
        color: #174a8b;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.card-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 30px 30px 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.login-card {
    max-width: 460px;
    margin: 0 auto;
}

.field-label {
    display: block;
    margin: 18px 0 6px 0;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.text-input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px;
    font-size: 18px;
    border: 1px solid #bbb;
    border-radius: 6px;
}

.primary-button {
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #174a8b;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.error-message {
    margin-top: 18px;
    color: #a00000;
    font-family: Arial, sans-serif;
    font-size: 15px;
}
.login-logo {
    width: 70%;
    max-width: 360px;
    height: auto;
}

.login-card h1 {
    margin-top: 0;
    text-align: center;
}

.login-help {
    margin-top: 18px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

    .login-help a {
        color: #174a8b;
        text-decoration: none;
    }

        .login-help a:hover {
            text-decoration: underline;
        }

.button-disabled,
.button-disabled:hover {
    opacity: 0.45;
    cursor: not-allowed;
    background: #999 !important;
}