* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.login-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #D82C74 0%, #9333EA 100%);
  border: 4px solid #D82C74;
  border-radius: 20px;
  overflow: hidden;
}

.header-section {
  background: linear-gradient(135deg, #D82C74 0%, #9333EA 100%);
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0 0 50% 50% / 0 0 100px 100px;
  clip-path: ellipse(100% 100% at 50% 0%);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.logo-image {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.content-section {
  flex: 1;
  background-color: #F8F9FA;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.login-title {
  color: #D82C74;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.login-form {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  width: 100%;
}

.input-group input {
  width: 100%;
  height: 50px;
  background-color: #D82C74;
  border: none;
  border-radius: 25px;
  padding: 0 20px;
  font-size: 16px;
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.input-group input:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 44, 116, 0.3);
}

.forgot-password {
  text-align: center;
  margin: 10px 0;
}

.forgot-link {
  color: #D82C74;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #9333EA;
  text-decoration: underline;
}

.login-button {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #D82C74 0%, #9333EA 100%);
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(216, 44, 116, 0.3);
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 44, 116, 0.4);
}

.login-button:active {
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
  .login-container {
    border-radius: 0;
    border: none;
    height: 100vh;
  }
  
  .header-section {
    height: 40%;
  }
  
  .logo-image {
    max-height: 150px;
  }
  
  .content-section {
    padding: 30px 20px;
  }
  
  .login-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .login-form {
    max-width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .logo-image {
    max-height: 120px;
  }
  
  .login-title {
    font-size: 32px;
  }
  
  .content-section {
    padding: 20px 15px;
  }
}