        .signon-page-container {
            min-height: 100vh;
            background: white;
            display: flex;
            justify-content: center;
            padding: 20px;
        }


        .signon-card h1 {
            font-size: 2em;
            color: black;
            margin: 0 0 32px 0;
            font-weight: 400;
            text-align: center;
            font-family: serif;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.95em;
            font-family: sans-serif;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .form-group input[type="text"],
        .form-group input[type="password"] {
            width: 100%;
            padding: 12px 40px 12px 12px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 0.95em;
            font-family: sans-serif;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="password"]:focus {
            outline: none;
            border-color: rgb(215, 30, 40);
            box-shadow: 0 0 0 3px rgba(215, 30, 40, 0.1);
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            background: none;
            border: none;
            color: purple;
            cursor: pointer;
            font-size: 0.8em;
            padding: 0;
            text-decoration: underline;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: sans-serif;
        }

        .toggle-password:hover {
            color: rgb(215, 30, 40);
        }

        .checkbox-group {
            margin-bottom: 24px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: rgb(215, 30, 40);
        }

        .checkbox-label {
            font-size: 0.95em;
            color: #333;
            font-family: sans-serif;
            cursor: pointer;
        }

        .security-notice {
            margin-bottom: 32px;
            font-size: 0.8em;
            color: #666;
            line-height: 1.5;
            font-family: sans-serif;
        }

        .submit-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .signon-submit {
            width: 34%;
            padding: 12px 24px;
            background-color: rgb(215, 30, 40);
            color: white;
            border: none;
            border-radius: 24px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: sans-serif;
            justify-self: center;
            display: flex;
        }

        .signon-submit:hover {
            background-color: rgb(185, 20, 30);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(215, 30, 40, 0.3);
        }

        .signon-submit:active {
            transform: translateY(0);
        }

        .signon-kezz {
            width: 34%;
            padding: 12px 24px;
            background-color: #eee;
            color: #333;
            border: 1px solid black;
            border-radius: 24px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: sans-serif;
            justify-self: center;
            display: flex;
        }

        .back-link {
            text-align: center;
            margin-top: 24px;
        }

        .back-link a {
            color: rgb(215, 30, 40);
            text-decoration: none;
            font-size: 0.9em;
            font-family: sans-serif;
            transition: color 0.25s ease;
        }

        .back-link a:hover {
            text-decoration: underline;
        }

        .error-message {
            background-color: #f8d7da;
            border: 2px solid #f5c6cb;
            color: #721c24;
            padding: 12px 16px;
            border-radius: 6px;
            margin-bottom: 24px;
            font-size: 0.9em;
            display: none;
            font-family: sans-serif;
            font-weight: 500;
        }

        .error-message.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }