* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  /* background: linear-gradient(to bottom, #1E3C72, #2A5298);  */
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}


#login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  display: flex;
  width: 800px;
  background: rgba(255, 255, 255, 0.1); /* Glass effect */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.left-box {
  flex: 1;
  padding: 50px;
  text-align: center;
}

.right-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-box img {
  width: 100%;
  height: auto;
}

.title {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.form-label {
  color: white;
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  margin-bottom: 15px;
  background: white; /* Solid background to stand out */
  color: black; /* Dark text for contrast */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* subtle depth */
}


#btn {
  width: 100%;
  background: #2A5298;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

#btn:hover {
  background: #1E3C72;
}

.or-text {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin: 10px 0;
}

.google-signin-button {
  width: 100%;
  background: white;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  text-decoration: none;
  color: #2A5298;
  transition: 0.3s;
}

.google-signin-button:hover {
  background: #D1F8EF;
}

.google-signin-button img {
  width: 20px;
}

.ojt {
   height : 100px;
}

@media only screen and (max-width: 768px) {
  .login-box {
    flex-direction: column;
    width: 90%;
  }

  .right-box {
    display: none;
  }

  .left-box {
    padding: 30px;
  }
}
