    /* General styling */
    body {
        height: 100vh;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Gotham', Arial;
        background-color: #F1F0F0;
        overflow: hidden;
    }
    
    @media (max-width: 768px) {
        body {
            overflow: auto;
        }
    }
    
    .container {
        height: 100%;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    /* Card styling */
    .card {
        border-radius: 30px;
        border-color: none;
        color: #000;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.30);
    }
    
    /* Left section styles */
    .card-body {
        padding: 3rem 1rem;
    }
    
    .text-center img {
        width: 185px;
    }
    
    .text-center h4 {
        margin-top: 0.25rem;
        margin-bottom: 10px;
        color: #4E4E4E;
        padding-bottom: 10px;
    }
    
    /* Form styles */
    .form-outline {
        margin-bottom: 1rem;
    }
    
    .form-outline input {
        padding: 0.5rem;
        width: 100%;
        border-radius: 0.25rem;
        border: 1px solid #ccc;
    }
    
    .form-outline .form-label {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    
     /* Button */
    .btn-primary {
        background: linear-gradient(90deg, #EE880E 0%, #E84510 100%);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 25px;
        font-size: 16px;
        margin: 15px 0;
        width: 80%;
        transition: 0.5s;
        cursor: pointer;
        position: relative;
        z-index: 0;
        user-select: none;
    }
    
    .btn-primary::after {
        content: "";
        z-index: -1;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: linear-gradient(90deg, #EE880E 0%, #E84510 100%);
        left: 0;
        top: 0;
        border-radius: 10px;
    }
    
    .btn-primary::before {
        content: "";
        background: linear-gradient(
        45deg,
        #EE880E, #E84510, #EE880E
        );
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 600%;
        z-index: -1;
        width: calc(100% + 4px);
        height:  calc(100% + 4px);
        filter: blur(8px);
        animation: glowing 20s linear infinite;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
        opacity: 0;
    }
    
    @keyframes glowing {
        0% {background-position: 0 0;}
        50% {background-position: 400% 0;}
        100% {background-position: 0 0;}
    }
    
    /* Button Hover */
    .btn-primary:hover::before {
        opacity: 1;
    }
    
    .btn-primary:active:after {
        background: transparent;
    }
    
    .btn-primary:active {
        color: #313131;
    }
    
    
    
    
    /* Right section styles */
    .gradient-custom-2 {
        background: linear-gradient(to bottom, #ED7F20 0%, #E54C29 100%) !important;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .text-white {
        color: #fff;
        user-select: none;
    }
    
    .px-3, .p-md-5 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    /* Link styles */
    
    .text-muted {
        margin-top: 10px;
    }
    
    a.text-muted {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.875rem;
    }
    
    a.text-muted:hover {
        text-decoration: underline;
    }
    
    .info {
        font-size: 13px;
        color: #4E4E4E;
    }

    
    .disclaimer {
        font-size: 10px;
        color: #FFF;
        margin-top: 50px;
        text-align: center;
    }
