/* Reset y Layout General */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: #f8f9fa;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Added hamburger menu styles */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      margin: 3px 0;
      transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Header */
    .header {
      width: 100%;
      height: 100px;
      background: linear-gradient(135deg, #2d4875 0%, #53ada0 100%);
      display: flex;
      align-items: center;
      justify-content: left;
      padding: 0px 40px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-size: 24px;
      font-weight: 700;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2d4875;
      font-weight: bold;
    }

    .nav-menu{
      margin-left: 20px;
      margin-top: 20px;
    }

    .nav-menu ul {
      list-style: none;
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-menu li {
      position: relative;
    }

    .nav-menu li a {
      text-decoration: none;
      color: white;
      font-weight: 400;
      font-size: 14px;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-menu li a:hover {
      opacity: 0.8;
    }

    /* Added dropdown styles for Planes menu */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      border-radius: 8px;
      z-index: 1000;
      margin-top: 10px;
    }

    .dropdown-content a {
      color: #2d4875 !important;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      font-size: 14px;
      border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-content a:last-child {
      border-bottom: none;
    }

    .dropdown-content a:hover {
      background-color: #f8f9fa;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-arrow {
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    /* Modified main container to position cloud image behind */
    .main-container {
      padding-top: 115px;
      background-color: #fff;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      flex: 1;
    }

    /* Added cloud background positioning */
    .cloud-background {
      position: absolute;
      bottom: 122px;
      left: 0;
      width: 100%;
      height: 200px;
      z-index: 1;
      overflow: hidden;
    }

    .cloud-background img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      opacity: 0.8;
    }

    .login-wrapper {
      background: #E6EBEB;
      border-radius: 20px;
      box-shadow: 0px 4px 4px 0px #00000040;
      overflow: visible;
      max-width: 1200px;
      width: 100%;
      display: flex;
      min-height: 530px;
      position: relative;
      z-index: 2;
    }

    /* Modified image section to extend beyond container */
    .login-image {
      position: relative;
      flex: 0 0 50%;
      overflow: visible;
    }

    .login-image img {
      width: 100%;
      height: 110%;
      object-fit: cover;
      position: absolute;
      top: -10%;
      left: -8%;
      z-index: 1;
    }

    /* Form Section */
    .login-form-section {
      width: 50%;
      flex: 1;
      padding: 30px 80px 30px 0px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .welcome-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 64px;
      font-weight: 900; /* Black weight to mimic Gotham Black */
      color: #2d4875;
      line-height: 58px;
      margin-bottom: 5px;
      letter-spacing: 0.04em; /* Tighter spacing like Gotham */
    }

    .welcome-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      color: #676A6A;
      margin-bottom: 40px;
      font-weight: 500; /* Medium weight as per design spec */
    }

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

    .form-label,
    .login-form-section label,
    .login-form-section .form-label {
      font-family: 'Montserrat', sans-serif !important;
      display: block !important;
      font-size: 12px !important;
      font-weight: 600 !important; /* Medium weight as per design spec */
      color: #112145 !important;
      margin-bottom: 8px !important;
    }

    .form-input,
    .login-form-section input,
    .login-form-section .form-input,
    .login-form-section input[type="email"],
    .login-form-section input[type="password"] {
      font-family: 'Montserrat', sans-serif !important;
      background-color: transparent !important;
      width: 100% !important;
      padding: 0px 0px 10px 0px !important;
      border: none !important;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
      border-bottom: 1px solid #96A4BA !important;
      font-size: 12px !important;
      color: #4D638A !important;
      transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
      box-shadow: none !important;
    }

    .form-input:focus,
    .login-form-section input:focus,
    .login-form-section .form-input:focus,
    .login-form-section input[type="email"]:focus,
    .login-form-section input[type="password"]:focus {
      outline: none !important;
      border-bottom: 1px solid #75839b !important;
      background-color: transparent !important;
      box-shadow: none !important;
    }

    .form-input::placeholder,
    .login-form-section input::placeholder,
    .login-form-section .form-input::placeholder,
    .login-form-section input[type="email"]::placeholder,
    .login-form-section input[type="password"]::placeholder {
      font-family: 'Montserrat', sans-serif !important;
      color: #9ca3af !important; /* Updated to match design spec */
      font-size: 12px !important;
      font-weight: 400 !important; /* Regular weight as per design spec */
    }

    .forgot-password {
      font-family: 'Montserrat', sans-serif;
      display: inline-block;
      color: #00AFA1;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600; /* Semibold weight as per design spec */
      transition: color 0.3s ease;
      margin-top: 30px;
    }

    .forgot-password:hover {
      color: #2d4875;
    }

    .btn-login {
      width: 260px;
      padding: 14px;
      background: linear-gradient(135deg, #53ada0 0%, #2d4875 100%);
      color: white;
      font-size: 16px;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-login:hover {
      box-shadow: 0 5px 15px rgba(83, 173, 160, 0.3);
    }

    .btn-close-session {
      padding: 14px;
      background: linear-gradient(135deg, #00AFA1 0%, #2d4875 100%); /* Same gradient as login button */
      color: white;
      font-size: 16px;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s ease;
      /* Removed box-shadow glow effect */
    }

    .btn-close-session:hover {
      transform: translateY(-2px); /* Subtle hover effect instead of glow */
      /* Removed green glow effect */
    }

    /* Signup Section */
    .signup-section {
      text-align: center;
      padding: 40px 20px;
      background: white;
      position: relative;
      z-index: 2;
    }

    .signup-text {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 10px;
    }

    .signup-link {
      color: #53ada0;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .signup-link:hover {
      color: #2d4875;
    }

    /* Footer - Sticky footer implementation */
    .footer {
      background: #2d4875;
      text-align: center;
      padding: 20px;
      position: relative;
      z-index: 2;
      margin-top: auto; /* This pushes the footer to the bottom */
      flex-shrink: 0; /* Prevents footer from shrinking */
    }

    .footer-text {
      color: white;
      font-size: 14px;
    }
    
    /* Additional styles for pages using master.blade.php */
    .page-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    /* For pages that don't use main-container */
    .content-wrapper {
      flex: 1;
      min-height: calc(100vh - 140px);
    }

    /* Improved responsive design for tablet and mobile */
    @media (max-width: 1024px) {
      .login-wrapper {
        max-width: 900px;
      }
      
      .login-form-section {
        padding: 50px 40px;
      }
      
      .welcome-title {
        font-size: 48px;
        line-height: 44px;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 0 15px;
        justify-content: space-between;
      }

      .main-container {
        padding-top: 60px;
        min-height: calc(100vh - 120px); /* Adjust for smaller header on mobile */
      }

      /* Hide regular menu and show hamburger on tablet/mobile */
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2d4875 0%, #53ada0 100%);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      .nav-menu.active {
        display: block;
      }

      .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
      }

      .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .nav-menu li:last-child {
        border-bottom: none;
      }

      .nav-menu li a {
        padding: 15px 0;
        display: block;
        width: 100%;
      }

      .hamburger {
        display: flex;
      }

      .dropdown-content {
        position: static;
        display: block;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        margin: 0;
        border-radius: 0;
      }

      .dropdown-content a {
        color: white !important;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .login-wrapper {
        flex-direction: column;
        margin: 20px;
        overflow: hidden;
      }

      .login-image {
        text-align: center;
        width: 100%;
        margin: 0 auto;
        flex: none;
        height: auto;
        overflow: hidden;
      }

      .login-image img {
        width: 60%;
        height: 100%;
        position: static;
        border-radius: 20px 20px 0 0;
      }

      .login-form-section {
        padding: 40px 30px;
        width: 100%;
      }

      .welcome-title {
        font-size: 36px;
        line-height: 32px;
      }

      .btn-login {
        width: 100%;
      }

      .cloud-background {
        height: 150px;
      }
    }

    @media (max-width: 768px) {
        .btn-close-session {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
      .header {
        padding: 0 15px;
        justify-content: space-between;
      }
      .main-container{
        padding-top: 40px;
        min-height: calc(100vh - 100px); /* Adjust for smaller header on small mobile */
      }
      
      .logo {
        font-size: 20px;
      }

      .login-form-section {
        padding: 30px 20px;
            width: 100%;
      }
      .login-image {
        margin: 0 auto;
        padding-top: 17px;
        width: 85%;
      }

      .welcome-title {
        font-size: 28px;
        line-height: 26px;
      }

      .welcome-subtitle {
        font-size: 14px;
      }

      .cloud-background {
        height: 120px;
      }
    }

    