    * {
        box-sizing: border-box;
    }

    body,
    html {
        height: 100%;
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background: linear-gradient(135deg, #e3f2fd, #fff8f1);
    }

    .coluna-esquerda {
        background: url('/static/img/BG-tela-inicial.png') no-repeat center center;
        background-size: cover;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100%;
        color: white;
    }

    .texto-apresentacao {
        padding: 2rem;
        border-radius: 15px;
        max-width: 64%;
    }

    .titulo {
        font-size: 2.5rem;
        font-weight: bold;
        color: #fff;
    }

    .destaque {
        color: #ffa552;
    }

    .descricao {
        font-size: 1.1rem;
        color: #f1f1f1;
        line-height: 1.6;
    }

    .coluna-direita {
        background-color: #ffffff;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-left: 8px solid #ffa552;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.05);
    }

    .coluna-direita h2 {
        color: #004c99;
        font-weight: bold;
        margin-bottom: 2rem;
    }

    .form-label {
        font-weight: bold;
        color: #333;
    }

    .form-control {
        border-radius: 10px;
        border: 2px solid #ced4da;
    }

    .buttons {
        text-align: center;
    }

    .blob-btn {
        position: relative;
        padding: 20px 46px;
        margin-bottom: 30px;
        text-align: center;
        text-transform: uppercase;
        color: #0505A9;
        font-size: 16px;
        font-weight: bold;
        background-color: transparent;
        outline: none;
        border: none;
        transition: color 0.5s;
        cursor: pointer;
        border-radius: 30px;
        z-index: 1;
    }

    .blob-btn::before {
        content: "";
        z-index: 1;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #0505A9;
        border-radius: 30px;
        pointer-events: none;
    }

    .blob-btn::after {
        content: "";
        z-index: -2;
        position: absolute;
        left: 3px;
        top: 3px;
        width: 100%;
        height: 100%;
        transition: all 0.3s 0.2s;
        border-radius: 30px;
        pointer-events: none;
    }

    .blob-btn:hover {
        color: #FFFFFF;
        border-radius: 30px;
    }

    .blob-btn:hover::after {
        transition: all 0.3s;
        left: 0;
        top: 0;
        border-radius: 30px;
    }

    .blob-btn__inner {
        z-index: -1;
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background: transparent;
    }

    .blob-btn__blobs {
        position: relative;
        display: block;
        height: 100%;
        filter: url('#goo');
    }

    .blob-btn__blob {
        position: absolute;
        top: 2px;
        width: 25%;
        height: 100%;
        background: #0505A9;
        border-radius: 100%;
        transform: translate3d(0, 150%, 0) scale(1.7);
        transition: transform 0.45s;
    }

    .blob-btn__blob:nth-child(1) {
        left: 0%;
        transition-delay: 0s;
    }

    .blob-btn__blob:nth-child(2) {
        left: 25%;
        transition-delay: 0.08s;
    }

    .blob-btn__blob:nth-child(3) {
        left: 50%;
        transition-delay: 0.16s;
    }

    .blob-btn__blob:nth-child(4) {
        left: 75%;
        transition-delay: 0.24s;
    }

    .blob-btn:hover .blob-btn__blob {
        transform: translate3d(0, 0, 0) scale(1.4);
    }

    .input-arquivo {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 30px;
        border: 2px solid #0505A9;
        background-color: #f8f9fa;
        color: #333;
        transition: all 0.3s ease-in-out;
    }

    .input-arquivo:hover {
        border-color: #ffa552;
        background-color: #fff;
    }

    .input-arquivo:focus {
        border-color: #ffa552;
        outline: none;
        box-shadow: 0 0 0 0.25rem rgba(255, 165, 82, 0.25);
    }




    @media (max-width: 768px) {
        .coluna-esquerda {
            display: none;
        }

        .coluna-direita {
            border-left: none;
            border-top: 8px solid #ffa552;
        }
    }

    .modal-content {
        border-radius: 2rem !important;
      }
      
      .spinner-border.text-warning {
        width: 2.5rem;
        height: 2.5rem;
      }
      