/* ==========================================================================
   Base Styles and Variables
   ========================================================================== */

/* Google Fonts Import - DM Sans with various weights */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

/* CSS Custom Properties (Variables) for consistent theming */
:root {
  --primary-purple: #342c6c;
  --primary-pink: #f47d9d;
  --light-bg: #f6f5ff;
  --white: #ffffff;
  --text-gray: #cfcfd8;
  --transition-speed: 0.3s;

  /* Additional helpful variables */
  --header-height: 96px;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Reset and base styles */
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
  height: var(--header-height);
  background: var(--white);
  padding: 15px 100px;
  border-bottom: 5px solid #edf1f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  width: 220px;
  height: 75px;
  padding-top: 10px;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn-custom-pink {
  background: var(--primary-pink);
  color: var(--white);
  width: 258px;
  height: 61px;
  padding: 10px;
  font-size: 18px;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 700;
  text-transform: none;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
}

.btn-custom-pink:hover {
  background: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

/* ==========================================================================
   Main Content Sections
   ========================================================================== */
/* Main section wrapper */
.main-section {
  margin-top: 100px;
  background: var(--white);
}

/* Info section styles */
.info-section {
  background-color: #29235c;
  color: var(--white);
  padding: 100px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.info-content {
  color: var(--text-gray);
}

.info-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.login-container {
  display: flex;
}

.login-form-section {
  flex: 1;

  padding: 0px 100px 0px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-image-section {
  border-radius: 20px;
  margin-right: 0px !important;
  margin: 50px;
}

.welcome-text {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  color: #000;
}
.text-pink{
  color: #f47d9d !important;
}
.login-subtitle {
  color: #3e3d3d;

  font-size: 18px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.form-control {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.login-btn {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--primary-pink);
  color: var(--white);
  border: none;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.google-btn {
  width: 70%;
  padding: 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  color: #000;
}

.google-btn img {
  height: 20px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: #666;
  position: relative;
}

.divider:before,
.divider:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.divider:before {
  left: 0;
}

.divider:after {
  right: 0;
}

.sign-in-text {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #000;
}

.sign-in-link {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 500;
}

.sign-in-link:hover {
  text-decoration: underline;
}

.form-check-label {
  font-size: 14px;
  font-weight: 400;
}

.form-check-label a {
  color: var(--primary-purple);
  text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* Large devices (992px and up) */
@media screen and (min-width: 992px) {
  .btn-custom-pink {
    width: 258px;
    height: 61px;
    padding: 10px;
    font-size: 18px;
  }
}

/* Medium devices (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .btn-custom-pink {
    width: 220px;
    height: 54px;
    padding: 10px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .login-form-section {
    padding: 30px;
  }

  .login-image-section {
    display: none;
  }

  .welcome-text {
    font-size: 2rem;
  }
}

/* Extra small devices (up to 576px) */
@media (max-width: 576px) {
  .header {
    height: 100px;
    padding: 10px 15px;
  }

  .info-section {
    padding: 30px 20px;
  }

  .info-subtitle,
  .info-content p {
    font-size: 1rem;
  }
}
