.custom-auth-container h2 {
            font-size: 36px;
            margin-bottom: 8px;
            color: #101828;
            font-weight: 400;
            font-family: "Abhaya Libre", Sans-serif;

        }
        .custom-auth-container .subtitle {
            color: #4A5565;
            font-size: 16px;
            margin-bottom: 30px;
             font-weight: 400;
             font-family: "Poppins", Sans-serif;
        }
        .form-row {
            display: flex;
            gap: 15px; 
        }
        .form-group {
            margin-bottom: 20px;
            flex: 1;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #101828;
            font-family: "Poppins", Sans-serif;
        }
        .form-group label .optional {
            color: #999;
            font-weight: 400;
        }
        .input-wrapper {
            position: relative;
        }
        .custom-auth-container .input-wrapper input {
            width: 100%;
            border-radius: 6px;
            font-size: 16px;
            font-family: "Poppins", Sans-serif;
            border: 2px solid #E5E7EB;
            border-radius: 14px;
            padding: 12px 16px 12px 34px;
            color: #0A0A0A80;
        }
        .input-wrapper input:focus {
            outline: none;
            border-color: #E5E7EB !important;
        }
        .input-wrapper input.error {
            border-color: #dc3545;
        }
        .input-wrapper .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
        }
        .input-wrapper .toggle-password {
            position: absolute;
            right: 12px;
            top: 55%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            padding: 5px;
        }
        .input-wrapper .toggle-password:hover, .input-wrapper .toggle-password:focus {
            background-color: transparent !important;
        }
        .error-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        .error-message.show {
            display: block;
        }
        .checkbox-group {
            margin: 20px 0;
            font-size: 13px;
        }
        .checkbox-group input[type="checkbox"] {
            margin-right: 8px;
        }
        .checkbox-group label{
            color: #364153;
            font-family: "Poppins", Sans-serif;
            font-weight: 500;
            font-size: 14px;
        }
        .checkbox-group a {
            color: #0A2F2F;
            text-decoration: none;
            font-family: "Poppins", Sans-serif;
            font-weight: 500;
            font-size: 16;
        }
        .checkbox-group a:hover {
            text-decoration: underline;
        }
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            font-size: 15px;
            color: #364153;
            font-family: "Poppins", Sans-serif;
            font-weight: 500;
        }
        .remember-forgot a {
            color: #0A2F2F;
            text-decoration: none;
            font-weight: 600;
        }
        input[type="checkbox"] {
            accent-color: #364153;
        }

        html body .submit-btn {
            width: 100%;
            padding: 14px;
            background: #0A2F2F !important;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
            font-family: "Poppins", Sans-serif;
        }
        .submit-btn:hover {
            background: #083d3d;
        }
        .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        .divider {
            text-align: center;
            margin: 25px 0;
            color: #999;
            font-size: 13px;
            position: relative;
        }
        .divider::before,
        .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 45%;
            height: 1px;
            background: #e0e0e0;
        }
        .divider::before {
            left: 0;
        }
        .divider::after {
            right: 0;
        }
        .social-btn {
            width: 100%;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.3s;
        }
        .social-btn:hover {
            background: #f8f8f8;
        }
        .social-btn img {
            width: 20px;
            height: 20px;
        }
        .toggle-form {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
            color: #4A5565;
            font-family: "Poppins", Sans-serif;
        }
        .toggle-form a {
            color: #0A2F2F;
            text-decoration: none;
            font-weight: 600;
            font-family: "Poppins", Sans-serif;
        }
        .toggle-form a:hover {
            text-decoration: underline;
        }
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            display: none;
        }
        .success-message.show {
            display: block;
        }
        .general-error {
            background: #f8d7da;
            color: #721c24;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            display: none;
        }
        .general-error.show {
            display: block;
        }