* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  direction: rtl;
  font-family: 'AtiranSans';
}

.container-fluid {
  margin: 0 !important;
  position: fixed;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pform {
  position: relative;
  transition: opacity 0.5s, transform 1s;
}

.pform.hide {
  opacity: 0;
}

.pform .col-md-12 {
  margin: 30px 0;
}

.pform#Authorization .col-md-12 {
  margin: 15px 0;
}

.overlay {
  opacity: 0;
}

.left-section {
  float: left;
  height: 100%;
  width: 50%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-section {
  background: rgba(255, 255, 255, 0.29);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-control {
  background: rgba(255, 255, 255, 0.29);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.right-section {
  float: right;
  height: 100%;
  width: 50%;
  background: #15647b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.submit-panel {
  display: block;
  bottom: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.companyDetail {
  height: 400px;
}

.input-g label {
  color: black;
  font-size: large;
}

#Validation {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.waiting-circle {
  position: relative;
  width: 22px;
  height: 22px;
  border: 4px solid white;
  border-top: 4px solid #15647b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 600px) {
  .right-section {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .left-section {
    width: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

[data-theme="dark"] {
  background-color: #111 !important;
  color: #eee;
}

[data-theme="dark"] .bg-light {
  background-color: #333 !important;
}

[data-theme="dark"] .bg-white {
  background-color: #000 !important;
}

[data-theme="dark"] .bg-black {
  background-color: #eee !important;
}

[data-theme="dark"] .input-g label {
  color: white;
}

[data-theme="dark"] ::placeholder {
  color: white;
}

[data-theme="dark"] .Clear_Form {
  color: white;
}

#Validation {
  width: 100%;
  padding: 0 40px;
}

#companyDetail {
  width: 100%;
}

.success-header {
  padding: 0;
}

.upload-status {
  height: 100px;
  width: 100px;
}

.success-header div {
  padding: 20px 0;
}

.finish-button {
  direction: ltr;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding-bottom: 50px;
}

