.custom-list-group-item {
    display: flex;
    align-items: center;
    padding: 5px 5px;
    border-radius: 0.5rem !important; /* Overriding Bootstrap's default for rounded corners on all items */
    margin-bottom: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.custom-list-group-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.icon-column {
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}

.text-column {
    flex-grow: 1;
}

.card-header-custom {
    background-color: white;
}

.qr-code {
    width: 120px;
    height: 120px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-card {
    border-radius: 10px;
    border: solid 1px #bd2026;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    background-color: #fff;
}

.profile-card .card-body {
    position: relative;
    padding: 2rem;
    z-index: 1;
    height: 50vh;
}

.profile-card .card-body::before {
    content: '';
    position: absolute;
    top: -35px;
    right: -57px;
    width: 190px;
    height: 135px;
    background-image: url('../../images/mascot-3.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1; 
    transform: rotate(-30deg);
}

.profile-card .card-body::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 250px;
    height: 250px;
    background-image: url('../../images/mascot-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3; 
    z-index: -1; 
    transform: rotate(15deg);
}

.profile-card2 {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    background-color: #fff;
}

.profile-card2 .card-body {
    position: relative;
    padding: 2rem;
    z-index: 1;
    height: 45vh;
}

.profile-card2 .card-body::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: -155px;
    width: 300px;
    height: 240px;
    background-image: url('../../images/mascot-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3; 
    z-index: -1;
    transform: rotate(10deg);
}

/* .profile-card2 .card-body::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 250px;
    height: 250px;
    background-image: url('../../images/mascot-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3; 
    z-index: -1; 
    transform: rotate(15deg);
} */
.register-form {
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
