
/* Enhanced Login Page Styling - Web Responsive */
:root {
  --primary-color: #f15f34;
  --sub-primary-color: #F7932D;
  --main-black: #050506;
  --background-color: #f6f6f6;
  --grey-color: #707070;
  --white-color: #ffffff;
  --main-font: 'Inter', sans-serif;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  background-color: #f6f6f6;
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  line-height: 1.6;
}

/* Main container structure */
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  padding: 20px;
}

/* Login wrapper */
.login-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Login container */
.login-container {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  min-height: 600px;
  max-height: 800px;
}

/* Image Section - Keep original dimensions */
.sideImg_Section {
  width: 40%;
  min-width: 400px;
  position: relative;
  overflow: hidden;
}

.sideImg_Section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Form Section */
.side_logic {
  width: 60%;
  min-width: 500px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-form-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

/* Form Title and Text */
h4 {
  font-size: 32px;
  font-family: 'Inter', sans-serif;
  color: var(--main-black);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 18px;
  color: var(--grey-color);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
}

/* Form styling */
.login-form {
  width: 100%;
}

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

/* Label styling */
span {
  font-size: 16px;
  color: var(--main-black);
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Input styling */
.custom_input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e8e8e8;
  border-radius: var(--border-radius);
  font-size: 16px;
  color: var(--main-black);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  font-weight: 500;
  text-align: center;
}

.custom_input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(241, 95, 52, 0.1);
  transform: translateY(-2px);
}

.custom_input::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

/* Button styling */
.custom_btn {
  width: 100%;
  padding: 16px 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.custom_btn:hover,
.custom_btn:active {
  background: #e54d2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 95, 52, 0.3);
}

/* Web/Desktop Responsive Design */
/* Large desktops (1400px and up) */
@media (min-width: 1400px) {
  .login-container {
    max-width: 1400px;
    min-height: 700px;
  }
  
  .side_logic {
    padding: 50px;
  }
  
  .login-form-container {
    max-width: 500px;
  }
  
  h4 {
    font-size: 36px;
  }
  
  p {
    font-size: 20px;
  }
}

/* Large desktops (1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .login-container {
    max-width: 1200px;
    min-height: 650px;
  }
  
  .side_logic {
    padding: 45px;
  }
  
  .login-form-container {
    max-width: 480px;
  }
  
  h4 {
    font-size: 34px;
  }
  
  p {
    font-size: 19px;
  }
}

/* Medium desktops (992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .login-container {
    max-width: 1000px;
    min-height: 600px;
  }
  
  .side_logic {
    padding: 40px;
  }
  
  .login-form-container {
    max-width: 450px;
  }
  
  h4 {
    font-size: 32px;
  }
  
  p {
    font-size: 18px;
  }
}

/* Small desktops and tablets (768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .login-container {
    max-width: 900px;
    min-height: 550px;
  }
  
  .sideImg_Section {
    width: 45%;
    min-width: 350px;
  }
  
  .side_logic {
    width: 55%;
    min-width: 400px;
    padding: 35px;
  }
  
  .login-form-container {
    max-width: 400px;
  }
  
  h4 {
    font-size: 30px;
  }
  
  p {
    font-size: 17px;
  }
}

/* Animation for form elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.side_logic {
  animation: fadeInUp 0.6s ease-out;
}

h4 {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

p {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.login-form {
  animation: fadeInUp 0.6s ease-out 0.3s both;
} 