.u-section-2 {
    background-image: linear-gradient(0deg, rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url("/static/img/bg-1.jpeg");
    background-position: 50% 50%;
    min-height: 100vh;
}

.u-section-2 .u-layout-wrap-1 {
    margin-top: 100px;
    margin-bottom: 60px;
}

/* Styles for the login form container */
.login-form-container {
    background-color: rgba(0, 0, 0, 0.8); /* Slightly darker for better contrast */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto; /* Center the form */
    color: var(--primarycolor); /* Use primary color for text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}

/* Styles for the form elements */
.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: var(--primarycolor); /* Use primary color for input text */
    background-color: rgba(255, 255, 255, 0.1); /* Light background for inputs */
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 2px solid var(--secondarycolor); /* Highlight color */
}

.btn-login {
    background-color: var(--secondarycolor); /* Use secondary color for button */
    color: #fff; /* Text color */
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: darken(var(--secondarycolor), 10%); /* Darker shade on hover */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.left-column {
    flex: 1;
    padding-right: 20px; /* Space between columns */
}

.right-column {
    flex: 1;
}

.u-form-group {
    display: flex; /* Change to flex to allow for alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: stretch; /* Ensure items stretch to full width */
    width: 100%; /* Set width to 100% */
    margin-bottom: 15px; /* Add space between fields */
}

.u-form-vertical {
    display: flex; /* Use flexbox for the form */
    flex-direction: column; /* Stack form groups vertically */
}

.u-sheet {
    max-width: 598px; /* Set maximum width */
    margin: auto; /* Center horizontally */
    display: flex; /* Use flexbox for vertical centering */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
}

.u-container-layout {
    padding: 15px;
}