/* DZLM CUSTOM LOGIN */

#cas-server-user-login, #block-thex-subtheme-content:has(#user-login-form), #block-thex-subtheme-benutzeranmeldung, #user-pass, #user-register-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
	
	#edit-actions, .button, input {
		width: 100%;
	}
	form {
		width: 100%;
	}
	.form-item {
		margin-bottom: 1rem;
	}
	
	label {
		font-size: 1rem;
		color: #333;
		margin-bottom: 0.5rem;
		display: block;
	}
	input.form-text {
		width: 100%;
		padding: 0.75rem;
		font-size: 1rem;
		border: 1px solid #ccc;
		border-radius: 4px;
		box-sizing: border-box;
	}
	.form-submit {
		margin-top: 1rem;
		background-color: var(--primary);
		color: #fff;
		border: none;
		padding: 1rem;
		font-size: 1rem;
		border-radius: 4px;
		cursor: pointer;
		width: 100%;
		transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease;
	}
	.form-submit:hover {
		transform: scale(1.05);
		background-color: #2b6b74;
	}
	.create-account-link, .request-password-link {
		display: block;
		text-align: center;
		margin-top: 1rem;
		text-decoration: none;
	}
	ul {
		list-style: none;
	}
	.create-account-link:hover, .request-password-link:hover {
		text-decoration: underline;
	}
}


#user-register-form {
	width: 95%;
	max-width: 700px;
}