.btn-continue, .btn-backbtn {
    padding:12px 15px !important;
}
.check-group-platform {
    margin: 25px 0;
    text-align: center;
}

.check-group-platform .form-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-group-platform .form-check-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.check-group-platform .form-check {
    margin: 0;
    padding: 0;
    flex: 1;
    max-width: 200px;
}

.check-group-platform .form-check-inline {
    border-radius: 12px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-align: center;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
   
    box-shadow: 0 0px 15px rgba(0, 123, 255, 0.15);
}

.check-group-platform .form-check-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    
}

.check-group-platform .form-check-inline.active {
    background-color: #13759c;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.check-group-platform .form-check-input {
    position: absolute;
    opacity: 0;
}

.check-group-platform .form-check-label {
    cursor: pointer;
    display: block;
    width: 100%;
}

.check-group-platform .form-check-label img {
    height: 25px;
    width: auto;
    transition: transform 0.2s ease;
}

/* Active/Checked states */
.check-group-platform .form-check.active .form-check-inline,
.check-group-platform .form-check-input:checked ~ .form-check-inline {
    border-color: #007bff;
    /* background-color: rgb(162 226 255); */
    background-color: #005b7f;
    box-shadow: 0 4px 15px rgba(0,123,255,0.15);
}

.check-group-platform .form-check.active .form-check-label img,
.check-group-platform .form-check-input:checked + .form-check-label img {
    transform: scale(1.1);
}

/* Button styles */
.btn-backbtn,
.btn-continue {
    border-radius: 10px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.btn-backbtn {
    background-color: #f5f5f5;
    color: #666;
}

.btn-backbtn:hover {
    background-color: #e9e9e9;
    color: #333;
}

.btn-continue {
    background-color: #007bff !important;
    color: white !important;
}

.btn-continue:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,123,255,0.2);
}

/* Card styles */
.auth-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
}

.auth-card__body {
    padding: 30px !important;
}
.btn-login{
    border-radius: 10px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}
/* Responsive adjustments */
@media (max-width: 576px) {
    .auth-card .auth-card__body{
        padding: 3rem 1rem 3rem !important;
    }
    .check-group-platform .form-check-group {
        flex-direction: column;
        align-items: center;
    }

    .check-group-platform .form-check-inline {
        width: 100%;
        text-align: center;
    }
    
    .btn-backbtn,
    .btn-continue {
        width: 100%;
        margin: 5px 0;
    }
}