* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Yekan,sans-serif;
  direction: rtl;
}
body{
  background-color: #f7f7f7;
}
@font-face {
    font-family: Yekan;
    src: url(/assets/font/iranyekanwebregularfanum.woff);
}
.main-wrapper {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 5fr 2fr;
 
}
.main-wrapper .left-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 55px 55px 55px;
  margin: 0 auto;
 
}
.main-wrapper .left-section .title {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.main-wrapper .left-section .title .time{
  margin-top: 20px;
  background-color: #ffc107;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 4px;
}
.main-wrapper .left-section .title  .logo-wrapper img {
  width: 180px;
  height: 200px;
  padding-bottom: 20px;
}
.main-wrapper .left-section .title .login-text {
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.main-wrapper .right-section{
  height: 100%;
  width: 100%;
  background-image: url(/assets/images/sarmad-img.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.main-wrapper .left-section .login-wrapper{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}
.main-wrapper .left-section .login-wrapper input{
  height: 78px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  width: 100%;
  font-size:18px;
  padding: 0 26px;
  background-color: transparent;
}
.main-wrapper .left-section .login-wrapper .message{
  color: #ed4337;
  font-size: 16px;
  font-weight: 00;
  display: none;
  margin-top: 8px;
}
.main-wrapper .left-section .login-wrapper .message.show{
  display: block;
}
input ::placeholder{
  color: #999999;
}
.main-wrapper .left-section .login-wrapper input:focus{
  border: 1px solid #6675df;
  outline: none;
}
.main-wrapper .left-section .login-wrapper .login-button{
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #6675df;
  color: #fff;
  font-size: 18px;
  border: none;
}
.main-wrapper .left-section .login-wrapper .login-button:hover{
  background-color: #333333;
  transition: color 0.5s;
  cursor: pointer;
}

@media screen and (max-width:500px) {
  .main-wrapper{
    grid-template-columns: 1fr;
  }
  .main-wrapper .right-section{
    display: none;
  }
  .main-wrapper .left-section .title .logo-wrapper{
    background-image: linear-gradient(0deg, rgba(247, 247, 247, 1), rgba(247, 247, 247, 0.5)), url(/assets/images/sarmad-img.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: top;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px 0;
  }
  .main-wrapper .left-section{
   max-width: 100%;
   padding: 20px 15px 55px 15px;
  }

  .main-wrapper .left-section .title .time{
    font-size: 16px;
    white-space: nowrap;
  }
  .main-wrapper .left-section .title .login-text {
    font-size: 30px;
  }
  .main-wrapper .left-section .login-wrapper input{
    font-size: 18px;
  }
  .main-wrapper .left-section .login-wrapper .message{
    font-size: 14px;
  }
  .main-wrapper .left-section .login-wrapper .login-button{
    font-size: 18px;
  }
}