.main-border-div{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 30px;
}
.main-title-flex{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.main-title-text{
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    margin-left: 10px;
    margin-top: 5px;
}
.main-class-info{
    padding-left: 30px;
}
.li-show-div{
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 1);
    position: relative;
    padding-left: 20px;
}
.li-show-div::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: rgba(6, 93, 252, 1);
    border-radius: 50%;
}
.main-delete-form{
    /*max-width: 600px;*/
}
.form-group{
    margin-bottom: 25px;
}
.form-label{
    display: block;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    font-size: 15px;
}
.form-input{
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
}
.form-input:focus{
    outline: none;
    border-color: rgba(53, 94, 252, 1);
    box-shadow: 0 0 0 3px rgba(53, 94, 252, 0.15);
}
.form-input::placeholder{
    color: rgba(0, 0, 0, 0.3);
}
.form-hint{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 6px;
}
.captcha-row{
    display: flex;
    gap: 12px;
}
.captcha-btn{
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    background: linear-gradient(135deg, rgba(53, 94, 252, 1), rgba(79, 172, 254, 1));
    box-shadow: 0 4px 15px rgba(53, 94, 252, 0.3);
}
.captcha-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 94, 252, 0.4);
}
.captcha-btn:active{
    transform: translateY(0);
}
.checkbox-group{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checkbox-group input[type="checkbox"]{
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: rgba(53, 94, 252, 1);
}
.checkbox-group label{
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}
.submit-btn{
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(53, 94, 252, 1), rgba(79, 172, 254, 1));
    box-shadow: 0 6px 25px rgba(53, 94, 252, 0.4);
}
.submit-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(53, 94, 252, 0.5);
}
.submit-btn:active{
    transform: translateY(-1px);
}
.modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(8px);
}
.modal-overlay.active{
    opacity: 1;
    visibility: visible;
}
.modal-box{
    background: white;
    border-radius: 24px;
    padding: 40px 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.3) rotate(-15deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.modal-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    animation: rainbow 2s linear infinite;
}
@keyframes rainbow{
    0%{background-position: 0% 50%;}
    50%{background-position: 100% 50%;}
    100%{background-position: 0% 50%;}
}
.modal-overlay.active .modal-box{
    transform: scale(1) rotate(0deg);
}
.modal-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    animation: iconBounce 0.6s ease;
}
@keyframes iconBounce{
    0%, 100%{transform: scale(1);}
    50%{transform: scale(1.2);}
}
.modal-icon.error{
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}
.modal-icon.success{
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    box-shadow: 0 0 30px rgba(29, 209, 161, 0.5);
}
.modal-title{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.modal-message{
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}
.modal-btn{
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(53, 94, 252, 1), rgba(79, 172, 254, 1));
    box-shadow: 0 6px 20px rgba(53, 94, 252, 0.4);
}
.modal-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 94, 252, 0.5);
}
.confetti{
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    animation: confettiFall 3s ease-out forwards;
}
@keyframes confettiFall{
    0%{transform: translateY(-100vh) rotate(0deg); opacity: 1;}
    100%{transform: translateY(100vh) rotate(720deg); opacity: 0;}
}
.shake-animation{
    animation: shake 0.5s ease;
}
@keyframes shake{
    0%, 100%{transform: translateX(0);}
    10%, 30%, 50%, 70%, 90%{transform: translateX(-10px);}
    20%, 40%, 60%, 80%{transform: translateX(10px);}
}
.pulse-animation{
    animation: pulse 0.6s ease infinite;
}
@keyframes pulse{
    0%, 100%{transform: scale(1);}
    50%{transform: scale(1.05);}
}