body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-image: url('images/background test.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-image: url('images/background test.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.welcome {
    flex: 1;
    padding: 40px;
}

.welcome h1 {
    font-size: 48px;
    color: #007BFF;
    font-weight: bold;
    text-shadow: 2px 2px 8px #000000a0;
}
.welcome p{
    font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: rgb(255, 255, 255) !important;
  transition: color 0.3s ease-in-out;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    color: #333;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.login-box h2 {
    margin-bottom: 20px;
}

.login-box label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    background-color:#007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background-color: #00aeff;
}

.signup-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

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

.signup-text a:hover {
    text-decoration: underline;
}
.error-message {
    background-color: #ffe5e5;
    color: #cc0000;
    padding: 10px 15px;
    border: 1px solid #cc0000;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
  }
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  .login-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    max-width: 420px;
    margin-left: auto;
    transition: all 0.3s ease;
  }
  
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 5%;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 5%;
  }
  
  