﻿.page-heading .title,
.card-title,
ul.nav-menu li a {
  text-transform: none;
}

/* Button Styling */
#body .gx-btn,
.gx-fab-btn,
#body .gx-flat-btn,
#body .btn {
  text-transform: none;
}

/* Full-Height Content */
.gx-main-content {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
}

/* Footer Styling */
.gx-footer {
  border: none;
}

/* Background Image */
.gx-main-container {
  background-image: url("/images/login/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 100dvh;
}

/* Login Content */
.login-content {
  display: flex;
  flex-direction: row;
  background-color: #7ad3de77;
  max-width: 90%;
  width: 800px;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Login Header */
.login-content .login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 20px;
  text-align: center;
}

.login-content .login-header h1 {
  color: white;
  font-size: 4vw; /* Responsive font size */
}

/* Login Form */
.login-content .login-form {
  padding: 20px;
  width: 50%;
  background: white;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-content {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .login-content .login-header {
    width: 100%;
    text-align: center;
    margin-bottom: 0px !important;
  }

  .login-content .login-header h1 {
    font-size: 6vw; /* Slightly bigger on small screens */
  }

  .login-content .login-form {
    width: 100%;
  }
}
