 /* Full page centering */
        
        @font-face {
            font-family: 'BethanyElingstonRegular';
            src: url('fonts/BethanyElingstonRegular-9045910.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }
        /* Apply it to body or specific elements */
        
        html,
        body {
            height: 100%;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #f8f9fa;
            /* Light gray background */
        }
        /* Container styling */

        h1,h2,h3,p{
            text-decoration: none;
            color: #000000;
            -webkit-font-smoothing: antialiased;
            font-family: 'BethanyElingstonRegular', sans-serif;
            letter-spacing: 2px;
        }

        .mt-3 {
            margin-top: 3rem;
        }

        input, input[type="password"], input[type="text"], button {
            width: 300px;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;

             text-decoration: none;
            color: #000000;
            -webkit-font-smoothing: antialiased;
            font-family: 'BethanyElingstonRegular', sans-serif;
            letter-spacing: 2px;
        }


        .page-content{
            align-items: flex-start
        }
        
        .container {
            display: flex;
            flex-direction: column;
            /* Stack elements vertically */
            align-items: center;
            justify-content: center;
        }
        /* Visually hidden h1 (for screen readers & SEO) */
        
        .logo {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        /* Logo image styling */
        
        .logo-img {
            width: 32vw;
            /* Adjust as needed */
            height: auto;
        }

        .logo-img--small {
            width: 20vw;
            /* Adjust as needed */
            height: auto;
        }
        /* Email styling */
        
        .email {
            margin-top: 20px;
            font-size: 18px;
            font-weight: bold;
        }
        
        .email a {
            text-decoration: none;
            color: #000000;
            -webkit-font-smoothing: antialiased;
            font-family: 'BethanyElingstonRegular', sans-serif;
            letter-spacing: 2px;
            /* Blue color */
        }
        
        .email a:hover {
            text-decoration: underline;
        }