/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #CFAF5D;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.login-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
}

.login-header img {
    width: 100px;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #CFAF5D;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #CFAF5D;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #CFAF5D;
    border-radius: 5px;
    background-color: #333;
    color: #CFAF5D;
}

.login-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #CFAF5D;
    color: #1a1a1a;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #a08b4a;
}

.additional-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.additional-links a {
    color: #CFAF5D;
    text-decoration: none;
    font-size: 14px;
}

.additional-links a:hover {
    text-decoration: underline;
}


