/* Fullscreen background with transparency */
body {
    font-family: Arial, sans-serif;
   
    background: url('/static/images/bg2.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
/* Second Page   */
.second-page {
    font-family: Arial, sans-serif;
   /* background: url("../images/2nd_BG_Main.jpeg") no-repeat center center fixed; */
    background: url('/static/images/2nd_BG_Main.jpeg') no-repeat center center fixed;
   /* background-size: cover; */ 
    margin-top: 50px;
    padding: 0;
    background-size: 1750px 900px;
    background-color:Aqua;
    background-repeat: no-repeat;
   /* position: relative; */
   /* color: white; */
   /* display: flex; */
   /* justify-content: center; */
   /* align-items: center; */
    height: 100vh;
   /* margin: 0; */ 
}

/*  logo */
.logo 
{
  position: absolute; 
  top: 9px;
/*  right: 1740px; */
  right: 40px;
}

/* Optional: Overlay Effect */
.second-page::before {
    content: "";
   /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Adjust transparency */
    z-index: -1;
}



/* Overlay effect */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency (0.5 for 50%) */
    z-index: -1;
}

/* Login Box */
.login-box {
    background: rgba(255, 255, 255, 0.1); /* Light transparency */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    backdrop-filter: blur(5px); /* Blur effect */
}



/* Heading */
h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Input Fields */
.input-group {
    margin: 10px 0;
}

input {
    width: 90%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    text-align: center;
}

input::placeholder {
    color: #cccccc;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background-color: #00A8E8;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #007BBA;
}

/* Error Message */
.error-msg {
    color: #FF4B5C;
    font-size: 14px;
    margin-top: 10px;
}

.password-group {
    position: relative;
}

.password-group input {
    padding-right: 10px; /* Space for image */
   
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    cursor: pointer;
}
