body{

    background-image: url('back.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.Header{
    text-align: center;
    width: auto;
    height: 50px;
    border-radius: 20px;
    color: #285096;
    font-size: 20px;
    animation: MoveHeader 5s ease-in-out infinite;
    font-family: 'yekan';
}
.WorkshopTitle{
    text-align: center;
    font-family: 'yekan';
    margin:3px auto;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(13, 47, 213, 0.507);
    font-size: 1rem;;
    
}
/*------- فرم دهی هدر و فوتر ------*/
.iicalogo{
    margin: 0 auto;
    display: block;
    height: max-content;
    width: max-content; 
}
.iicafooter{
    font-family: 'yekan';
    font-size: 12px;
    font-family: 'yekan';
    padding:10px auto;
    margin:0px auto;
    color: #FFFFFF;
    direction: rtl;
    text-align:center;
    display: block;
}
/*------- فرم دهی هدر و فوتر ------*/

.RegisterForm{
    text-align: center;
    font-family: 'yekan';
    margin:3px auto;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(13, 47, 213, 0.507);
    font-size: 1.8rem;;
    
}

#myForm{
    border-radius: 15px;
    background-color:rgba(223, 222, 222, 0.44);
    box-shadow: 3px 3px 10px #285096, -3px -3px 10px #28509681;
    width: max-content;
    height: max-content;
    padding: 30px;
    margin: 0.2rem auto 0 auto;
    transition: all 0.7s ease-in-out;
    direction: rtl;
    font-family: 'yekan';
}
#Container{
    gap: 90px;
    display: flex;
    flex-wrap: wrap;
}
.Column{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.Column2{
    margin: 5px auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.Label{
    font-size: 18px;
    font-weight: bold;
    margin: 7px 0px 5px 0px;
    font-family: 'yekan';
}
.Input{
    border: none;
    border-radius: 10px;
    padding: 5px;
    font-size: 18px;
    text-align: center;
    width: 300px;
    transition: all 0.5s ease-out;
    font-family: 'yekan';
}
.Input::placeholder{
    font-size: 1rem;
    color: rgb(225, 225, 225);
    text-align: center;
}


.Input:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.37);
}
.btn_Box{
    width: max-content;
    margin: 25px auto 5px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn{
    padding: 7px;
    width: 150px;
    height: max-content;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
    background: #285096;
    font-family: 'yekan';
    color: white;
}
.btn:hover{
    transform: scale(1.05);
    background-color: #0070FA;
    box-shadow: 0px 4px 10px #285096;
}
#preview{
    border-radius: 15px;
    background:rgba(223, 222, 222, 0.44);
    box-shadow: 3px 3px 10px #285096, -3px -3px 10px #28509681;
    width: max-content;
    height: max-content;
    padding: 30px;
    margin: 25px auto 0 auto;
    transition: all 0.7s ease-in-out;
    font-family: 'yekan';
    font-weight: bold;
    font-size: 20px;
    direction: rtl;
}
.Status{
    border-radius: 15px;
    background:rgba(223, 222, 222, 0.44);
    box-shadow: 3px 3px 10px #285096, -3px -3px 10px #28509681;
    max-width: max-content;
    height: max-content;
    padding: 30px;
    margin: 1rem auto;
    transition: all 0.7s ease-in-out;
    font-family: 'yekan';
    font-weight: bold;
    font-size: 16px;
    animation: MoveBox 5s ease-in-out infinite;
    text-align: center;
    direction: rtl;
}
.Title{
    text-align: right;
}
.Data{
    text-align: center;
}
.info-item {
  margin-bottom: 1.2rem;
}
.info-label {
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.3rem;
  display: block;
}
.info-value {
  padding: 0.3rem;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #ddd;
  color: #285096;
}
.info-label , .info-value{
  font-family: 'yekan';
  width: 20rem;
}
.BackBtn{
    border: none;
    width: 150px;
    height: max-content;
    margin-top: 20px;
    padding: 7px;
    border-radius: 10px;
    font-family: 'yekan';
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    background-color: #285096;
    font-size: 16px;
    color: #FFFFFF;
}
@keyframes MoveHeader{
    0%{transform: translateY(-5px);}
    50%{transform: translateY(5px);}
    100%{transform: translateY(-5px);}
}
@media screen and (max-width: 768px){
    .Status{
        width: 70%;
    }
    #Container{
        flex-direction: column;
        gap: 0px;
    }
    .btn , .Label , .Input , #Header{
        font-size: 14px;
    }
    .Column {
        flex: 1 1 100%;
    }
    .WorkshopTitle{
        font-size: small;
        margin-bottom: 1rem;
    }
    #myForm{
        margin-top: 2rem;
    }
}