.elementor-5303 .elementor-element.elementor-element-e37fca7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a6ffe95 */* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: #f0f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        .card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 400px;
            transition: transform .3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
        }

        .card h2 {
            margin-bottom: 1.5rem;
            color: #333;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: .4rem;
            color: #555;
            font-size: .9rem;
        }

        .form-group input {
            width: 100%;
            padding: .8rem 1rem;
            border: 1px solid #ccd6e3;
            border-radius: 8px;
            font-size: .95rem;
            transition: border-color .2s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #6c63ff;
        }

        .btn-submit {
            width: 100%;
            padding: .9rem;
            background: #6c63ff;
            color: #fff;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background .2s;
        }

        .btn-submit:hover {
            background: #574fd6;
        }

        .success-message {
            margin-top: 1rem;
            padding: .8rem 1rem;
            background: #e6ffed;
            color: #276749;
            border-radius: 6px;
            text-align: center;
            display: none;
            font-size: .95rem;
            /* escondida por padrão */
        }/* End custom CSS */