        #RefreshCaptcha{
            border: none;
            border-radius: 10px;
            font-family: 'yekan';
            font-weight: bold;
            transition: all 0.3s ease-in-out;
            background: #285096;
            font-size: 16px;
            align-items: center;
        }
        #RefreshCaptcha:hover{
            transform: scale(1.05);
            background-color: #0070FA;
            box-shadow: 0px 4px 10px #285096;
        }
        #CaptchaContainer{
            display: flex;
            border: none;
            font-size: 15px;
            width: max-content;
            margin-top: 20px;
            height: 20px;
            font-weight: bold;
            border-radius: 10px;
            font-family: 'yekan';
            color: #285096;
            align-items: center;
            gap: 20px;
            text-align: left;
        }
        #captcha-img{
            transition: all 0.3s ease-in-out;
            border-radius: 10px;
            height:max-content;  
            width: 180px;
            height: 50px;
        }
        #captcha-img:hover{
            transform: scale(1.05);
        }
        #captcha-td{
            display: flex;
            align-items:center;
            justify-content: left;
            direction: ltr;
            gap:5%;
        }
        @media screen and (max-width: 768px){
            #CaptchaContainer{
                width: 94%;
                justify-content: flex-end;
                gap: 5px;
                
            }
            #captcha-img{
                width: 155px;
            }
        }
  