/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.login-page {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.login-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-right {
  flex: 1;
  background-color: #001f61;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-content {
  text-align: center;
  max-width: 300px;
}

.login-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: left; /* This will left-align the text */
}


.login-right h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left; /* This will left-align the text */
}

.form-container {
  margin-top: 20px;
}

.input_box {
  margin-bottom: 20px;
}

.input_box input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background: #f1f1f1;
}

.button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.button:hover {
  background-color: #0056b3;
}


.brand-banner {
  width: 100%;      /* Set to 100% to take full width initially */
  max-width: 300px; /* Adjustable max width */
  height: auto;     /* Automatically adjust height to maintain aspect ratio */
  margin-bottom: 123px;
}

/* If you want to set specific height and allow width to scale proportionally */
.brand-banner-height {
  height: 150px;  /* You can set this to any value */
  width: auto;    /* Automatically adjust width to maintain aspect ratio */
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Define keyframes for the right section */
@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Trigger the animations on slide-up class */
.login-page.slide-up .login-left {
  animation: moveLeft 0.8s forwards; /* Control the speed with 0.8s */
}

.login-page.slide-up .login-right {
  animation: moveRight 0.8s forwards;
}

/* Set the background during the transition */
.login-page {
  background-image: url("assests/bg.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin: 0; /* Adjust background color as needed */
  overflow: hidden;
}

.login-left,
.login-right {
  transition: transform 0.8s ease; /* Ensure smooth transition */
}