body {
	background: white;
	background-size: cover;
	font-family: 'Segoe UI', sans-serif;
	margin: 0;
}

.logo-link {
	font-size: 2rem;
	font-weight: 800;
	color: rgb(255, 153, 0);
	text-decoration: none;
	display: inline-block;
}

.logo-link:hover {
	color: rgb(255, 153, 0);
	text-shadow: 0 0 6px rgba(255, 213, 79, 0.8);
}

.logo-icon {
	font-size: 2rem;
	vertical-align: middle;
}

.logo-text {
	margin-left: 0.2rem;
	vertical-align: middle;
}

.register-container {
	background: #ffffff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
	width: 100%;
	max-width: 400px;
	color: #333333;
}

.form-control {
	border-radius: 10px;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	color: #333333;
}

.form-control::placeholder {
	color: #999;
}

.btn-register {
	background-color: rgb(255, 70, 70);
	color: white;
	font-weight: 700;
	border: none;
	border-radius: 0.5rem;
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-register:hover {
	background-color: rgb(255, 70, 70);
	box-shadow: 0 6px 15px rgba(0, 86, 179, 0.7);
	transform: scale(1.02);
	color: white;
}

.text-link {
	color: #007bff;
	text-decoration: underline;
	font-weight: 500;
}

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

@media (max-width: 576px) {
	.register-container {
		padding: 20px;
		margin: 0 15px;
	}
}