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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    /* background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: flex;
}

.side-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.form-section {
    width: 100%;
    max-width: 600px;
    height: 100%;
    background: rgba(255, 255, 255, 0.558); /* Semi-transparent white */
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    z-index: 2;
    margin-left: auto; /* Push it to the right */
}



.form-section::before {
    display: none; /* Remove the vertical line */
}


        .logo {
            position: relative;
            left: 10%;
            top: -5%;
        }


        .form-header {
            margin-bottom: 40px;
        }

        .form-header h1 {
            font-size: 32px;
            color: #184172;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-header p {
            color: #64748b;
            font-size: 16px;
            line-height: 1.5;
        }

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group input {
  width: 100%;
  padding: 15px 15px 15px 15px;
  border: 2px solid #e5f3ff;
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: #000000;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #E12126;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
  outline: none;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(30, 64, 175, 0.7);
  font-size: 16px;
  pointer-events: none;
  transition: 0.2s ease all;
  padding: 0 4px;
}

/* 👇 Only float on focus */
.form-group input:focus + label {
  top: 6px;
  font-size: 12px;
  color: #E12126;
  background: rgba(255, 255, 255, 0.85);
}


/* Password toggle */
.password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #E12126;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
}



        .signin-btn {
            width: 100%;
            padding: 18px;
            background: #E12126;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .signin-btn:hover {
            background:#c71319;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
        }

        .signin-btn:active {
            transform: translateY(0);
        }

        .header-accent {
            width: 60px;
            height: 4px;
            background: #E12126;
            border-radius: 2px;
            margin-bottom: 20px;
        }

    
         @media (max-width: 1024px) {
        .form-section {
            padding: 40px 35px;
        }

        .form-header h1 {
            font-size: 28px;
        }
    }

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

        .side-video {
            position: relative;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .form-section {
            margin-left: 0;
            max-width: 100%;
            width: 100%;
            height: auto;
            padding: 40px 25px;
            backdrop-filter: none;
            background: rgba(255, 255, 255, 0.95);
        }

        .logo img {
            width: 200px;
            height: auto;
            position: relative;
            left: 15%;
        }
    }

    @media (max-width: 480px) {
        .form-header h1 {
            font-size: 22px;
        }

        .form-group input {
            padding: 14px;
            font-size: 14px;
        }

        .signin-btn {
            padding: 14px;
            font-size: 14px;
        }

        .password-toggle {
            font-size: 12px;
        }

        .logo img {
            width: 160px;
        }
    }

    @media (max-height: 600px) {
        .form-section {
            height: auto;
            overflow-y: auto;
            padding-bottom: 40px;
        }
    }
    