@import url('https://fonts.googleapis.com/css2?family=Almarai&display=swap');

body {
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    direction: rtl;
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url('../images/back.webp');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1; 
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
  width: 640px;
}

.login {
  font-size: 30px;
  font-weight: 900;
  margin: 50px 40px 40px;
  text-align: center; 
}
.eula {
  color: #dedede;
  font-size: 14px;
  line-height: 1.5;
  margin: 40px;
}
.box {
  background: rgba(0, 0, 0, 0.482);
  border-radius: 20px;
  border: 2px solid white;
  backdrop-filter: blur(15px);
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
  color: #F1F1F2;
  position: relative;
  width: 50%;
  height: 500px;
  max-width: 500px; 
  padding: 20px; 
}


svg {
  position: absolute;
  width: 320px;
}
path {
  fill: none;
  stroke: url(#linearGradient);;
  stroke-width: 4;
  stroke-dasharray: 240 1386;
}
.form {
  margin: 40px;
  position: absolute;
}
label {
  color:  #ffffff;
  display: block;
  font-size: 14px;
  height: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.txt {
  background: transparent !important;
  border: 0;
  color: #f2f2f2 !important;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}
.txt::-moz-focus-inner { 
  border: 0; 
}
input {
    background: transparent;
    border: 0;
    color: #f2f2f2;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    outline: none !important;
    width: 100%;
}

    input::-moz-focus-inner {
        border: 0;
    }
.dxeTextBoxSys {
    background: transparent !important;
}
.dxeTextBoxDefaultWidthSys {
    background: transparent !important;
}
#submit {
    color: white;
    margin-top: 40px;
    transition: color 300ms;
}

    #submit:focus {
        color: #f2f2f2;
    }

    #submit:active {
        color: #d0d0d2;
    }

::-webkit-input-placeholder { 
  font-size: 15px;
  padding-right: 15px;
}






@media (max-width: 767px) {

  .page {
    height: auto;
  }

  .right {
    flex-shrink: 0;
    height: 100%;
    width: 80%;
    max-height: 550px;
  }
    .container {
        height: 100vh;
        width: 100vw;
    }

    .box {
        width:100%;
    }

}







