.redim_form_contaniner {

    background-image: url("./bg-desktop.jpg");
    background-size: cover;
    height: auto;
    width: 100%;
    border-radius: 15px;
    display: flex;
    padding: 20px;
    align-items: center;



}

.redim_form {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.redim_form form {
    width: 80%;
    position: relative;
}

#get_redeem_code {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

#get_redeem_code input {
    width: 100%;
    background-color: white;
    border-radius: 15px;
    height: 100px;
    padding: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
}

#get_redeem_code input::placeholder {
    font-weight: 900;
    font-size: 22px;
    color: #bdbbbb;
}

.redim_logo {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redeem_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -15px;
    left: -15px;

    background: green;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.redim_form #error {
    color: white;
    font-size: 22px;
    font-weight: bold;

}


#get_redeem_user {

    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 15px;
}



#apply_data , #thankyou {
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 15px;
}


#thankyou p {
    color: green;
}

#apply_data .customer_data {
    border: 1px solid #ccc;
    padding: 10px;
    width: 50%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

#apply_data .customer_confirm {

    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#get_redeem_user input {
    width: 100%;
    background-color: white;
    border-radius: 5px;
    height: 45px;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;

}

#cp_count_user{
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 20%);
    padding: 10px;
    border-radius: 10px;
}

#loading_redim{
    display: flex ;
    justify-content: center;
    align-items: center;
    width: 100% ;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2); /* مشکی با شفافیت 0.4 */
    padding: 20px;
    border-radius: 10px;
    
}
#loading_redim svg{
    width: 80px;
    height: 80px;
}
@media (max-width: 768px) {
    .redim_form_contaniner {
        background-image: url("./bg-mobile.jpg");
        flex-direction: column-reverse;
        height: auto;
        /* در صورت نیاز ارتفاع را اتوماتیک کنیم */
        align-items: flex-start;
        /* یا center بسته به طراحی */
    }
#get_redeem_code input {

    height: 65px;

}
	.redim_logo{
		height:100px;
	}

    #apply_data {
        flex-direction: column-reverse;

    }

    .redim_logo {
        width: 100%;

    }

    .redim_form {
        width: 100%;

    }

    .redim_form form {
        width: 100%;
    }

    .redim_form #error {
        font-size: 16px;

    }

    #apply_data .customer_data {

        width: 100%;

    }

    #apply_data .customer_confirm {

        width: 100%;

    }
}