.body,
.html{
  background: #0f0f0f;
}

/* SECTION */
.rg-login-section {
  min-height: 100vh;
  background: #0f0f0f;
  color: #fff;
}

/* LEFT IMAGE */
.rg-login-image {
  min-height: 100vh;
  background: url('https://i.pinimg.com/736x/06/c0/33/06c033a207c0f9626e8b3747e1a9da41.jpg') center/cover no-repeat;
  position: relative;
}


/* OVERLAY */
.rg-login-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    #0f0f0feb
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.rg-login-overlay h2 {
  font-size: 48px;
  font-weight: 700;
}

.rg-login-overlay p {
  max-width: 400px;
  color: #ddd;
}

/* FORM SIDE */
.rg-login-form-wrapper {
  height: 100vh;
  background: #0f0f0f;
}

@media (max-width:575px) {
  .rg-login-form-wrapper{
    height: auto;
    padding: 0px 10px;
  }
}

/* FORM BOX */
.rg-login-form-box {
  width: 100%;
  max-width: 400px;
}

/* INPUT */
.rg-login-input-group {
  position: relative;
  border-bottom: 1px solid #555;
}

.rg-login-input-group input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 35px 10px 0;
  color: #fff;
}

.rg-login-input-group i {
  position: absolute;
  right: 0;
  top: 10px;
  color: #d4af37;
}

/* BUTTON */
.rg-login-btn {
  background: #d4af37;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
}

.rg-login-btn:hover {
  background: #FFF;
  color: #000;
}

/* TEXT */
.rg-login-bottom-text {
  font-size: 14px;
  color: #aaa;
}

.rg-login-bottom-text a {
  color: #d4af37;
  text-decoration: none;
}
@media (max-width:768px) {
  .rg-login-form-box h2,
  .rg-login-bottom-text{
    text-align: center;
  }
}

.login-brand{
  text-align: center;
  justify-content: center;
  justify-items: center;
  width: 130px;
  margin: auto;
  margin-bottom: 10px;
}
@media (max-width:575px) {
  .login-brand{
    margin-top: 10px;
    width:110px;
  }
}

/* OR Divider */
.rg-login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.rg-login-divider::before,
.rg-login-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #444;
}

.rg-login-divider span {
  margin: 0 10px;
}

/* SOCIAL BUTTONS */
.rg-social-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.rg-social-btn:hover {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
}

#togglePassword {
  cursor: pointer;
}