body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    background: #f0f2f5;
}
/* Split Layout Form */
.split-form {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.split-form .image-side {
    flex: 1;
    background: linear-gradient(45deg,#2f5f4f,#2d495a);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.split-form .form-side {
    flex: 1;
    padding: 3rem;
}
.split-form input {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    border: none;
    border-bottom: 2px solid #eee;
    outline: none;
    transition: border-color 0.3s;
}
.split-form input:focus {
    border-bottom-color: #2f5f4f;
}
.split-form button {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: linear-gradient(240deg,#2f5f4f,#2d495a);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

.split-form button:hover {
    transform: translateY(-3px);
}

.login-btn .login-icon {
  height: 1.5em;            
  width: auto;              
  margin-right: 1em;
  border-radius: .1em;
}

.hr-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #666;
  font-weight: 300;
  margin: 20px 0 0 0;
  cursor: default;
}

.hr-text::before,
.hr-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}

/* Preloader full screen overlay */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.3s ease;
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
#progressBar {
    height: 2px;
    width: 15rem;
}

@media (max-width: 768px){
    .image-side {
        display: none !important;
    }
}