.top-list-flex-all{
    display: flex;
    align-items: center;
    color: white;
}
.top-list{
    display: flex;
    align-items: center;
}
.circle-div{
    margin: -3px 25px 0;
    padding-top: -20px;
    font-weight: 800;
}
.top-list-text{
    margin-left: 5px;
    margin-top: 4px;
}
.service-img{
    text-align: left;
}
.desc-service{
    font-size: 14px;
    text-align: left;
}
.title-margin{
    text-align: left;
    margin: 5px 0 !important;
}
.step-num{
    color: rgba(71, 67, 255, 1);
    font-weight: 600;
}
.title-step{
    font-size: 16px !important;
    color: rgba(28, 28, 28, 1)!important;
}
.num-list{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.num-list-info{
    margin-left: 15px;
}
.num-list-all{
    margin-top: 35px;
}
.num-list-title{
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 5px;
}
.compliant-bg{
    background: linear-gradient(to right, rgba(118, 119, 253, 1), rgba(120, 73, 209, 1));
    border-radius: 60px;
    padding: 65px;
}
.show-list{
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    margin-bottom: 15px;
    color: white;
    padding: 10px 15px;
}
.show-list-info{
    display: flex;
    align-items: center;
    font-weight: 600;
}
.show-list-title{
    margin-left: 10px;
}
.show-list-desc{
    margin-top: 8px;
    margin-left: 35px;
}
.bottom-list{
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 30px;
}
.bottom-list-text{
    margin-left: 10px;
}
.data-all{
    min-height: 500px;
    background-color: white;
    border: 1px solid rgba(193, 112, 74, 0.05);
    border-radius: 24px;
    margin-top: -60px;
    padding: 55px 45px;
}
.data-title-s{
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 22px;
}
.data-form-all{
    margin-top: 30px;
}
.form-group{
    margin-bottom: 25px;
}
.form-label{
    display: block;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
}
.form-input{
    width: 100%;
    height: 56px;
    padding: 0 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(248, 248, 248, 1);
    outline: none;
    transition: border-color 0.3s ease;
}
.form-input:focus{
    border-color: rgba(118, 119, 253, 1);
}
.form-input::placeholder{
    color: rgba(156, 156, 156, 1);
}
.form-input-group{
    display: flex;
    align-items: center;
}
.form-input-group .form-input{
    border-radius: 12px 0 0 12px;
    border-right: none;
}
.btn-rthd{
    height: 56px;
    padding: 0 25px;
    background-color: rgba(71, 67, 255, 1);
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-rthd:hover{
    background-color: rgba(58, 54, 212, 1);
}
.form-hint{
    display: block;
    color: rgba(156, 156, 156, 1);
    font-size: 14px;
    margin-top: 8px;
}
.form-check{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.form-check-input{
    width: 20px;
    height: 20px;
    margin-right: 12px;
    accent-color: rgba(118, 119, 253, 1);
}
.form-check-label{
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
}
.btn-delete{
    width: 100%;
    height: 56px;
    background: linear-gradient(to right, rgba(118, 119, 253, 1), rgba(120, 73, 209, 1));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.btn-delete:hover{
    opacity: 0.9;
}

.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(118, 119, 253, 1), rgba(120, 73, 209, 1));
    color: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(118, 119, 253, 0.4), 0 0 60px rgba(118, 119, 253, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-show {
    right: 20px;
    transform: translateY(0) scale(1);
}

.notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-icon 2s ease-in-out infinite;
}

.notification-success .notification-icon {
    background: rgba(72, 219, 154, 0.3);
}

.notification-error .notification-icon {
    background: rgba(255, 107, 107, 0.3);
}

.notification-content {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    max-width: 300px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}