		body {
			height: 100vh;
			background-color: #000;
			display: flex;
			align-items: center;
			justify-content: center;
			background-image: url('../images/fundo.jpg');
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
		}

		.login-container {
			background-color: #fff;
			border-radius: 8px;
			box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			padding: 30px;
			max-width: 400px;
			width: 100%;
			margin: auto;
			position: relative;
			z-index: 10;
		}

		input.form-control {
			font-size: 16px;
			padding: 10px 12px;
			border-radius: 6px;
			border: 1px solid #ced4da;
			background-color: #f8f9fa;
			transition: border 0.2s ease;
		}

		input.form-control:focus {
			border-color: #6c63ff;
			box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
		}

		.btn-primary {
			background-color: #3f3f46;
			border-color: #3f3f46;
			font-size: 14px;
			padding: 8px 12px;
		}

		.btn-primary:hover {
			background-color: #52525b;
			border-color: #52525b;
		}

		.input-group-text {
			cursor: pointer;
		}