/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #CFAF5D;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures footer stays at the bottom */
}

.header {
    background-color: #1a1a1a;
    padding: 20px;
    width: 100%; /* Ensures the header spans the full width */
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #CFAF5D;
    position: relative; /* Allows centering of the h1 */
}

.header h1 {
    margin: 0;
    font-size: 24px;
    position: absolute; /* Allows centering of the h1 */
    left: 50%; /* Start positioning at the center of the header */
    transform: translateX(-50%); /* Shift the h1 left by 50% of its width to fully center it */
}

.back-link {
    display: flex;
    align-items: center;
}

.back-icon {
    width: 50px;
    margin-right: 10px;
}

.total-records {
    font-size: 16px;
}


.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;
}

.register-container {
    background-color: #1a1a1a;
    margin-top: 50px; /* Adjusted margin-top */
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px;
    box-sizing: border-box; /* Ensures padding is included in width */
    align-self: center; /* Center the register-container horizontally */
}

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

.register-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;
}

.register-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;
}

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

.additional-links {
    margin-top: 20px;
}

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

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

.footer {
    background-color: #1a1a1a;
    color: #CFAF5D;
    padding: 10px;
    text-align: center;
    width: 100%; /* Ensures the footer spans the full width */
    position: relative;
}
