﻿/*$main-purple: darken(#A238FF, 30%);

$main-dark-purple: rgb(98, 4, 191);*/
.new_layout {
  position: relative;
}
.new_layout a {
  color: #06402B;
  font-weight: 800;
}
.new_layout p {
  color: #06402B;
}
.new_layout header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.new_layout .main-content {
  background-image: url("/images/AhimsaAnimalSanctuaryUK.jpg"); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  /* Form container */
  /* Form wrapper for sliding */
  /* Form sections */
  /* Headings */
  /* Form fields */
  /* Floating label effect */
  /* Button styling */
  /* Forgot password and register link */
}
.new_layout .main-content .form-container {
  position: relative;
  width: 45em;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  padding: 3em;
  border-radius: 1em;
  overflow: hidden;
}
.new_layout .main-content .form-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  transform: translateX(0);
}
.new_layout .main-content .form-wrapper.showLogin {
  transform: translateX(-50%);
}
.new_layout .main-content .form-section {
  text-align: center;
  color: #fff;
  padding: 1em;
  width: 100%;
  position: relative;
}
.new_layout .main-content .form-section:nth-child(1) {
  /*margin-right: 2em;*/
}
.new_layout .main-content .section {
  text-align: center;
  color: #fff;
  padding: 1em;
}
.new_layout .main-content .section a {
  text-decoration: none;
}
.new_layout .main-content h2 {
  margin-bottom: 20px;
  color: #06402b;
  font-weight: 800;
}
.new_layout .main-content h3 {
  margin-bottom: 20px;
  color: #06402b;
}
.new_layout .main-content .form-field {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.new_layout .main-content .form-field input {
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  border-bottom: 2px solid #06402b;
  color: #fff;
  outline: none;
  font-size: 16px;
}
.new_layout .main-content .form-field label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #06402b;
  font-size: 16px;
  transition: all 0.3s;
  pointer-events: none;
}
.new_layout .main-content .form-field input:focus + label,
.new_layout .main-content .form-field input:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #06402b;
}
.new_layout .main-content .btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #06402b;
  border: solid 1px #06402b;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-top: 2em;
  transition: background-color 0.3s;
}
.new_layout .main-content .btn-primary:hover {
  background-color: white;
  border: solid 1px #06402b;
  color: #06402b;
}
.new_layout .main-content .login-btn, .new_layout .main-content .action-btn {
  width: 100%;
  padding: 10px;
  background-color: #06402b;
  border: solid 1px #06402b;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-top: 2em;
  transition: background-color 0.3s;
}
.new_layout .main-content .login-btn:hover, .new_layout .main-content .action-btn:hover {
  background-color: white;
  border: solid 1px #06402b;
  color: #06402b;
}
.new_layout .main-content .forgot-password, .new_layout .main-content .register-link {
  margin-top: 2em;
  font-size: 16px;
  font-weight: 600;
  color: #06402b;
}
.new_layout .main-content .forgot-password a, .new_layout .main-content .register-link a {
  color: #06402b;
  text-decoration: none;
  font-weight: 800;
}
.new_layout .main-content .forgot-password a:hover, .new_layout .main-content .register-link a:hover {
  text-decoration: underline;
}
.new_layout .main-content .form-label {
  color: #06402b;
}
