/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

/* Page Container */
.page-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Two-Column Layout */
.two-column {
    display: flex;
    flex-direction: row;
    height: 100%;
}

/* Left Column: Video/Animation */
.column-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #003366;
    overflow: hidden;
    padding: 1rem;
}

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

/* Right Column: Login Form */
.column-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 2rem;
}

.form-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    padding: 0.8rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0056b3;
    color: white;
}

.btn-secondary {
    background-color: #f39c12;
    color: white;
}

.btn-cancel {
    background-color: #e74c3c;
    color: white;
}

/* Footer Section */
.footer {
    text-align: center;
    background-color: #f5fbff;
    padding: 1rem;
}
