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

:root {
  --headingFont: "Playfair Display", serif;
  --bodyFont: "Outfit", sans-serif;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: var(--bodyFont), sans-serif;
  background-color: #ffffff;
}
.container1 {
  width: 100%;
  height: 100vh;
  display: flex;
}
.login-container {
  width: 100%;
  height: 100%;
  display: flex;
}

/* Left Side -*/
.left-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
}
.man-picture {
  width: 100%;
  max-width: 507px;
  height: 701px;
}
.man-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: -50px 50px 0px #d4af37;
}

/* Right Side - Login Form */
.right-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 40px 20px 10px 20px;
}

.login-form {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.form-header .sign-in {
  color: #f4d03f;
  font-weight: 600;
}

.form-header p {
  color: #666;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #080808;
  font-weight: 500;
  font-size: 14px;
}

.input-container {
  position: relative;
}

.input-container i {
  position: absolute;
  margin-left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #f4d03f;
  font-size: 14px;
}

.input-container input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 15px 50px;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input {
  width: 100%;
  padding: 15px 50px;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #f4d03f;
  box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.forgot-password {
  text-align: right;
  margin-top: 8px;
}

.forgot-password a {
  color: #f4d03f;
  text-decoration: none;
  font-size: 12px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.sign-in-btn {
  width: 100%;
  padding: 15px;
  background: #d4af37;
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px 0;
}

.sign-in-btn:hover {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.google-signin {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  background: white;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.google-signin:hover {
  border-color: #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-icon {
  width: 20px;
  height: 20px;
  background: url("../img/google.png") no-repeat center;
  background-size: contain;
}

.signup-link {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.signup-link a {
  color: #f4d03f;
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 425px) {
  .container1 {
    flex-direction: column;
  }

  .left-side {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
  }

  .left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .right-side {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
  }
}
