/* Background styling */
body 
/* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Keeps video behind everything */
}

/* Login Card */
.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    

    /* Move to right side */
    position: absolute;
    right: 140px; /* Adjust this value for more gap */
    top: 50%;
    transform: translateY(-50%);

    }

    .container:hover {
        transform: translateY(-50%); /* Moves slightly front */
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    }

.logo {
    width: 350px;
    margin-bottom: 10px;
}

h3 {
    color: #fff;
    margin-bottom: 15px;
}

/* Style input fields to only have an underline */
input {
    width: 85%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid white; /* Only underline */
    background: transparent;
    color: white;
    font-size: 16px;
    outline: none; /* Remove blue highlight on focus */
}

/* Change underline color on focus */
input:focus {
    border-bottom: 2px solid #007BFF; /* Highlight color */
}

/* Password input with eye icon */
.password-container {
    position: relative;
}

.view-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/* Buttons */
.login-btn {
    background: linear-gradient(90deg, #ca39ca, #bc03ff, #590492); /* Blue Gradient */
    color: white;
    border: crimson;
    padding: 10px;
    width: 50%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.login-btn:hover {
    background: linear-gradient(90deg, #590492, #bc03ff, #ca39ca); /* Blue Gradient */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow */
}

.forgot-password {
    display: block;
    text-align: right; /* Align to the right */
    font-family: fantasy;
    margin-top: 2px; /* Move closer to the password field */
    margin-bottom: 15px; /* Add space below */
    font-size: 14px;
    color: #ffffff; /* Link color */
    text-decoration: none; /* Remove underline */
}

.forgot-password:hover {
    text-decoration: underline; /* Underline on hover */
}