.content {
    background-image: url('../images/CF_login_bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,41,61,0.5); 
    z-index: 1; 
}

.login-container {
    background-color: var(--CF-blue);
    padding: var(--spacing-xxl);
    border-radius: 8px;
    box-shadow: 17px 14px 10px 0px rgba(0,0,0,0.5);
    opacity:0.95;
    z-index: 2;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 380px;
}

.login-form label {
    margin-bottom: 5px;
	color: white;
}

.login-form-input {
    padding: 16px;
    margin-bottom: var(--spacing-md);
    border-radius: 4px;
	width: 380px;
	font-weight: 100;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 5px; 
}

.login-form button {
    background-color: var(--dark-grey);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	width: 100px;
	margin-top: 32px;
	font-weight: 200;
}

.login-form button:hover {
    background-color: #F2B430;
}

.logo img {
    width: 60%;  
    display: block; 
    margin: 0 auto; 
	padding-bottom: var(--spacing-xxl);
}

.password-reset {
	font-size: 0.9em;
    margin-top: 20px;
    text-align: left; 
}

.password-reset a {
    color: var(--dark-grey); 
    text-decoration: none; 
}

.password-reset a:hover {
    text-decoration: underline; 
}

