* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto";
  opacity: 0;
  transition: 1s;
}
.bg-white {
  background-color: #fafafa;
}

.h-full {
  height: 100vh;
}
.color-black {
  color: #000;
}
.color-gray-500 {
  color: #a2a2a2;
}

.bottom-40 {
  bottom: 40px;
}
.color-white {
  color: #fff;
}
.pad-sm {
  padding: 24px;
}
.mar-t-md {
  margin-top: 32px;
}
.mar-t-sm {
  margin-top: 24px;
}
.mar-t-xs {
  margin-top: 16px;
}
.mar-t-xxs {
  margin-top: 8px;
  margin-left: 50px;
}

.pad-b-lg {
  padding-bottom: 48px;
}
.type-32 {
  font-size: 32px;
}
.type-24 {
  font-size: 24px;
}
.type-20 {
  font-size: 20px;
}
.font-medium {
  font-weight: 500;
}
.letter-spacing-half {
  letter-spacing: 0.5px;
}
.max-w-97 {
  max-width: 97%;
}

.type-40 {
  font-size: 40px;
}

.pad-l-xxs {
  padding-left: 8px;
  padding-top: 2px;
}
.login-pad{
  padding-bottom: 2px;
  padding-left: 3px;
}
.block {
  display: block;
}
.border-gray-100 {
  border: 1px solid #dddddd;
}
.textbox {
  height: 30px;
  padding: 10px 30px;
  padding: 10px 10px;
  text-align: center;
}
.border-radius-50 {
  border-radius: 50px;
}
.justify-between {
  justify-content: space-between;
}
.bg-white {
  background-color: white;
}
.cursor-pointer {
  cursor: pointer;
}
.image-w {
  width: 18px;
}
.signin-w {
  width: 340px;
}

.signin-p {
  padding: 14px 96px;
  transition: 0.3s;
}
.signin-p:hover {
  background-color: #444444;
  color: white;
  border: none;
}
.signin-bg {
  background-color: #000;
  transition: 0.3s;
}
.signin-bg:hover {
  background-color: #444444;
  color: white;
  border: none;
}
.account-t {
  padding-top: 150px;
}
.justify-center{
  justify-content: center;
}
.loader-page {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 310;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-20 {
  padding-bottom: 20px;
}
.container {
  display: flex;
  height: 100vh;
}

.image-container,
.form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.items-centered {
  align-items: center;
  justify-content: center;
}
.image-container img {
  max-width: 100%;
  max-height: 100%; 
}

.form-container {
  padding: 20px;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100vh;
}
.w-70 {
  width: 70%;
}
.w-50 {
  width: 50%;
  height: 100%;
}
.flex{ 
  display:flex;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch > input:checked + .slider {
  background-color: #000;
}

.switch > input:focus + .slider {
  box-shadow: 0 0 1px #000;
}

.switch > input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.pad-l-xxxs{
  padding-left: 8px;
}
.text-gray-700{ 
  color:#454b52;
}
@media (max-width: 767px) {
  .d-none {
    display: none;
  }
  .form-padding {
    padding-left: 0;
  }
  
}
.error-message {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.show {
  opacity: 1;
}