.selected-card {
    border: 2px solid #2f7fdc;
}

.plano-responsivo {
    background-color: #2f7fdd;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 35px;
}

.nova-inscricao-texto {
    color: white;
    width: fit-content;
}

.parte-branca {
    height: 3px;
    background: linear-gradient(90deg, rgb(246 237 237) 0%, rgba(217, 217, 217, 0) 87.7%);
    border-radius: 21px;
}

.estilo-plano-selecionado {
    border-radius: 14px;
    background: rgba(232, 217, 215, 0.6);
    padding: 15px 30px;
}

.cor-da-informacao {
    font-weight: 600;
    color: white;
}

.cor-plano {
    color: #2f7fdd;
}

.h1 {
    font-size: 1.25em;
}

.nova-subscricao-text {
    font-style: normal;
    font-weight: 400;
    color: white;
}

/*--Input-Codigo-Promocional--*/
.group {
    position: relative;
}

.input {
    color: white;
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 250px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
}

.input:focus {
    outline: none;
}

.label-codigo {
    color: #fff;
    font-size: 10px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.input:focus~label,
.input:valid~label {
    top: -20px;
    font-size: 14px;
    color: #fff;
}

.bar {
    position: relative;
    display: block;
    width: 200px;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #fff;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

.input:focus~.bar:before,
.input:focus~.bar:after {
    width: 50%;
}

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.input:focus~.highlight {
    animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
    from {
        background: #fff;
    }

    to {
        width: 0;
        background: transparent;
    }
}

/*---Loading---*/

body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
}

.loading-container {
    position: absolute;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    background-color: rgb(23 63 110 / 80%);
    /* Fundo semi-transparente para escurecer a página */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}