.container-card-checkbox{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.top-card-checkbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bot-card-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card {
    border: 2px solid transparent; /* Initial border color */
    border-radius: 25px;
    transition: border-color 0.3s;
}

.container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 25px;
    padding: 20px 10px;
    width: 300px;
    height: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container::before{
    background-color: transparent;
}

.container input:checked ~ .content-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid #FFD7EB;
    border-radius: 25px;
}

.checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    background-color: rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    margin-left: auto;
    position: relative;
}

.container input:checked ~ .content-form .checkmark {
    background-color: #FFD7EB;
    position: relative;
}

.checkmark::after {
    content: "";
    width: 10px;
    height: 20px;
    border: solid #071621;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    display: none;
}

.container input:checked ~ .content-form .checkmark::after {
    display: block;
    position: absolute;
    top: 5px;
}

.content-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    justify-content: space-around;
    height: 100%;
}

.top-content-form {
    display: flex;
    width: 100%;
    align-items: center;
}

.top-content-form h3 {
    color: #FFFEF0;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.content-form p {
    color: #FFFEF0;
    font-size: 16px;
    margin: 0;
    line-height: 24px;
}

.container-email {
    max-width: 835px;
    width: 100%;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}


.input-email {
    display: flex;
    gap: 16px;
    width: 100%;
    input {
        border-radius: 50px !important;
        background-color: rgba(255, 255, 255, 0.15);
    }
    button {
        border-radius: 50px;
        font-weight: bold;
        padding: 10px 40px;
        border-radius: 100px;
        background: linear-gradient(180deg, #403756 0%, #071621 100%);
        border: 2px solid #FFD7EB;
        color: #FFD7EB !important;
    }
}

.container-email span a {
    color: #FFD7EB;
}

.custom-popup {
    background: #403756;
    color: #FFD7EB;
    h2{
       color: #FFFEF0 !important; 
    }
    .swal2-icon .swal2-success .swal2-icon-show{
        color: #FFD7EB !important;
    }
    div:where(.swal2-icon).swal2-success {
        border-color:#FFD7EB !important;
        color: #FFD7EB !important;
    }
    div:where(.swal2-icon).swal2-success .swal2-success-ring {
        border: .25em solid #ffd7eb63 !important;
    }
    div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
        background-color: #FFD7EB !important;
    }
    button {
        border-radius: 50px;
        font-weight: bold;
        padding: 10px 40px;
        border-radius: 100px;
        background: linear-gradient(180deg, #403756 0%, #071621 100%);
        border: 2px solid #FFD7EB;
        color: #FFD7EB !important;
    }
    button:hover {
        background: linear-gradient(180deg,#071621  0%, #403756 100%);
    }
    p{
        margin-bottom: 20px;
    }
    li{
        text-align: start;
    }
}

@media screen and (max-width: 1310px) {
        .top-card-checkbox {
        display: grid;
        grid-template-columns: repeat(2, 2fr);
        gap: 15px;
    } 
    .container-card-checkbox {
        gap: 15px;
    }
}
@media screen and (max-width: 660px) {
    .top-card-checkbox {
       display: grid;
       grid-template-columns: repeat(1, 4fr);
       gap: 15px;
    } 
    .bot-card-checkbox {
        display: grid;
        grid-template-columns: repeat(1, 2fr);
        gap: 15px;
    }
    .input-email {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        button{
            max-width: 170px;
        }
    }
}