body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem 4rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
}

.login-container::before {
    content: "Login";
    font-size: 2rem;
    font-weight: bold;
    color: #2575fc;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}
h5{
    color: red;
}
form {
    display: flex;
    flex-direction: column;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 40px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: #2575fc;
}

.input-group input::placeholder {
    color: #aaa;
}

.input-group::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #aaa;
}

.input-group:nth-child(1)::before {
    content: "\f007"; /* user icon */
}

.input-group:nth-child(2)::before {
    content: "\f023"; /* lock icon */
}

button {
    background-color: #2575fc;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

button:hover {
    background-color: #1a5fc8;
}

#video-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

#video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}