* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ddd;
}

img {
  width: 200px;
  height: 200px;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signin-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.signin-section .form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.signin-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #002499;
}

.signin-section input {
  width: 80%;
  max-width: 320px;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  background: #f2f2f2;
}

.signin-section button {
  width: 80%;
  max-width: 320px;
  padding: 12px;
  background-color: #002499;
  border: none;
  color: white;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.signin-section button:hover {
  background-color: #100169;
}

.signin-section p {
  margin: 15px 0;
  color: #444;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  width: 80%;
  max-width: 320px;
}

.copyright p {
  font-size: 12px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.welcome-section {
  width: 50%;
  background: linear-gradient(135deg, #002499, #009970);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.welcome-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.welcome-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 90%;
    height: auto;
  }

  .signin-section,
  .welcome-section {
    width: 100%;
  }
}
