            body {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                padding: 0;
                margin: 0;
                font-family: Arial, Helvetica, sans-serif;
                background: #fcfcfc;
                flex-direction: column;
            }
            .main-container {
                border: 1px solid rgba(0,0,0,0.1);
                padding: 2rem 2.5rem;
                display: flex;
                flex-direction: column;
                box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
                border-radius: 4px;
            }
            .hbs-logo{
                max-width: 180px;
                margin: 0 auto 20px;
            }
            .main-container .instructions h1 {
                text-align: center;
                margin: 0;
                font-size: 17px;
                margin-bottom: 0px;
            }
            .main-container section {
                display: flex;
                flex-direction: column;
                margin-bottom: 20px;
            }
            .main-container section input {
                padding: 10px;
                border-radius: 4px;
                margin-top: 10px;
            }
            .main-container .error {
                color: #9d3b3b;
                font-size: 12px;
                margin-top: 5px;
                padding-left: 0px;
                list-style-type: none;
            }

            .did-floating-label-content {
                position: relative;
                margin-bottom: 20px;
            }

            .did-floating-label {
                color: rgba(0, 0, 0, 0.87);
                font-size: 16px;
                font-weight: normal;
                position: absolute;
                pointer-events: none;
                left: 15px;
                top: 18px;
                padding: 0 5px;
                background: #fff;
                transition: 0.2s ease all;
                -moz-transition: 0.2s ease all;
                -webkit-transition: 0.2s ease all;
            }

            .did-floating-input {
                font-size: 17px;
                display: block;
                width: 100%;
                height: 56px;
                padding: 0 20px;
                background: #fff;
                color: #323840;
                border-radius: 4px;
                box-sizing: border-box;
                border: 1px solid rgba(0,0,0,0.87);
                min-width: 300px;
            }
            .did-floating-input:focus, button.btn-cta:focus {
                outline: none;
                border: 2px solid black;
            }
            .did-floating-input:focus ~ .did-floating-label {
                top: -8px;
                font-size: 13px;
            }

            .did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
                top: -8px;
                font-size: 13px;
            }

            .did-error-input .did-floating-input {
                /* border: 2px solid #9d3b3b; */
                color: #9d3b3b;
            }
            .did-error-input .did-floating-label {
                font-weight: 600;
                color: #9d3b3b;
            }

            .btn-cta {
                display: block;
                width: 100%;
                background: #A41034;
                color: white;
                padding: 0 8px 0 8px;
                height: 36px;
                font-size: 14px;
                text-transform: uppercase;
                border: 0;
                border-radius: 4px;
            }
            .btn-cta:hover {
                background: #9d3b3b;    
                cursor: pointer;
            }

            .did-floating-input.has-error {
                border: 1px solid #9d3b3b !important;
            }

            .links {
                margin-top: 40px;
                font-size: 0.8rem; 
                text-align: center; 
                display: flex; 
                align-items: center; 
                justify-content: space-between;
            }
            .links a {
                text-decoration: none; 
                color: black;
                margin: 0 10px;
            }
            .copyright {
                margin-top: 15px;
                font-size: 0.8rem; 
                text-align: center; 
                color: #616161;
            }
            .alt-links a {
                text-decoration: none; 
                color: black;
            }
            .alt-links {
                margin-top: 20px;
                text-align: center;
            }

            /* For extremely small screen devices (595px and below) */
            @media only screen and (max-width: 595px) {
                .main-container {
                    width: auto;
                    margin: 0 40px;
                }
                body {
                   height: auto;
                }
                .hbs-logo {margin: 20px;}
            }
            
            /* Small screen devices (600px and above) */
            @media only screen and (min-width: 600px) {
                .main-container {
                    width: auto;
                    margin: 0 80px;
                }
            }
            
            /* Medium screen devices (768px and above) */
            @media only screen and (min-width: 768px) {
                .main-container {
                    width: auto;
                    
                }
            }
            
            /* Big screen devices (889px and above) */
            @media only screen and (min-width: 889px) {
                .main-container {
                    max-width: 400px;
                }
            }
            
            /* Extra big screen devices (1200px and above) */
            @media only screen and (min-width: 1200px) {
                .main-container {
                    max-width: 400px;
                }
            }

            input:-webkit-autofill,
            input:-webkit-autofill:hover,
            input:-webkit-autofill:focus {
                transition: background-color 5000s ease-in-out 0s;
            }

