body {
            min-height: 100vh;
            display: grid;
            place-items: center;
            margin: 0;
            background: #f4f6fb;
            color: #111b52;
            font-family: "Public Sans", Arial, sans-serif;
        }

        .auth-card {
            width: min(470px, calc(100% - 32px));
            padding: 30px;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 18px 50px rgba(31, 42, 68, .1);
        }

        .auth-logo {
            width: 170px;
            margin: 0;
        }

        .auth-logo-link {
            display: block;
            margin-bottom: 22px;
            text-align: center;
        }

        .auth-title {
            margin: 0 0 8px;
            font-size: 26px;
            font-weight: 800;
        }

        .auth-note {
            margin: 0 0 22px;
            color: #6b7280;
            font-size: 14px;
        }

        .form-label {
            color: #1f2a44;
            font-size: 13px;
            font-weight: 700;
        }

        .form-control {
            min-height: 46px;
            border-radius: 9px;
            border-color: #dfe5ef;
            box-shadow: none;
        }

        .btn-auth {
            min-height: 46px;
            border: 1px solid #0d174b;
            border-radius: 9px;
            background: #0d174b;
            color: #fff;
            font-weight: 800;
        }

        .btn-auth:hover {
            border-color: #172763;
            background: #172763;
            color: #fff;
        }

        .auth-link {
            color: #0d174b;
            font-weight: 700;
        }
