﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.new_layout {
  position: relative;
}
.new_layout a {
  color: #003B73;
  font-weight: 800;
}
.new_layout p {
  color: #003B73;
}
.new_layout header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.new_layout .main-content {
  background-image: url("/images/login_background.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 */
  /* Close button for register form */
  /* Headings */
  /* Form fields */
  /* Floating label effect */
  /* Button styling */
  /* Forgot password and register link */
}
.new_layout .main-content .form-container {
  position: relative;
  width: 38em;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 3em;
  border-radius: 1em;
  overflow: hidden;
}
.new_layout .main-content .form-wrapper {
  display: flex;
  width: 100%;
  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 {
  max-width: 30em; /* Each form takes up half the width of the wrapper */
  text-align: center;
  color: #fff;
  padding: 1em;
}
.new_layout .main-content .section a {
  text-decoration: none;
}
.new_layout .main-content .close-btn {
  position: absolute;
  top: -1em;
  right: 1em;
  color: #fff;
  background: transparent;
  border: none;
  font-size: 2em;
  border-radius: 50%;
  width: 1.5em;
  cursor: pointer;
  background-color: #003B73;
}
.new_layout .main-content h2 {
  margin-bottom: 20px;
  color: #003B73;
}
.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 #003B73;
  color: #fff;
  outline: none;
  font-size: 16px;
}
.new_layout .main-content .form-field label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #003B73;
  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: #003B73;
}
.new_layout .main-content .btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #003B73;
  border: solid 1px #003B73;
  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 #003B73;
  color: #003B73;
}
.new_layout .main-content .login-btn, .new_layout .main-content .action-btn {
  width: 100%;
  padding: 10px;
  background-color: #003B73;
  border: solid 1px #003B73;
  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 #003B73;
  color: #003B73;
}
.new_layout .main-content .forgot-password, .new_layout .main-content .register-link {
  margin-top: 2em;
  font-size: 16px;
  font-weight: 600;
  color: #003B73;
}
.new_layout .main-content .forgot-password a, .new_layout .main-content .register-link a {
  color: #003B73;
  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: #003B73;
}
