/* Simply Divine Login Page Styles */
body { 
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  height: 100vh;
  overflow: hidden;
}

/* Pink Header */
.header {
  background: linear-gradient(135deg, #f0c8c8, #e6b8b8);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .logo img {
  height: 45px;
}

.header .hamburger {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
}

/* Main Content */
.main-container {
  display: flex;
  height: 100vh;
  padding-top: 80px;
}

/* Left Column - Grey */
.left-column {
    flex: 1;
    background: url(https://lh3.googleusercontent.com/p/AF1QipMAcDJyudiWeyIKwkfBMlR-H7aHR2u6bnqu1Bg=s1360-w1360-h1020-rw);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: 25% 50%, 100px 200px;
}

/* Right Column - White */
.right-column {
  flex: 1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Login Form */
.login-form {
  width: 100%;
  max-width: 400px;
}

.login-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3rem;
  text-align: left;
}

.form-control {
  border-radius: 25px;
  padding: 1.2rem 1.5rem;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  width: 100%;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: #d4a5a5;
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 165, 0.25);
  background: white;
  outline: none;
}

.btn-login {
  border-radius: 25px;
  background: #d4a5a5;
  border: none;
  color: white;
  font-weight: 600;
  padding: 1.2rem;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}

.btn-login:hover {
  background: #c49494;
}

.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }
  .left-column {
    display: none;
  }
  .right-column {
    flex: 1;
  }
}