/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
  }
  
  .container {
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .login-box {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 450px;
	box-sizing: border-box;
  }
  
  .header {
	text-align: center;
	margin-bottom: 20px;
  }
  
  .header .logo {
	font-size: 18px;
	font-weight: bold;
	color: #007BFF;
	text-decoration: none;
  }
  
  .header .link {
	font-size: 14px;
	color: #333;
	text-decoration: none;
  }
  
  .content {
	margin-top: 20px;
  }
  
  .form-group {
	margin-bottom: 15px;
  }

  .form-submit {
	margin-top: 15px;
  }
  
  .client_name {
margin-top: 5px;
margin-bottom: 5px;
  }

  label {
	font-size: 14px;
	color: #333;
	display: block;
  }
  
  input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
  }
  
  button.submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
  }
  
  button.submit-btn:hover {
	background-color: #0056b3;
  }
  
  .error-message {
	color: red;
	font-size: 14px;
	text-align: center;
	margin-bottom: 15px;
  }
  
  .footer {
	text-align: center;
	font-size: 12px;
	color: #777;
	margin-top: 20px;
  }
  
  .logo-img {
	/* width: 120px; */
	margin: 0 auto;
	display: block;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
	.login-box {
	  width: 90%;
	  padding: 20px;
	}
  
	.logo-img {
	  width: 100px;
	}
  }
  
  @media (max-width: 480px) {
	.logo-img {
	  width: 80px;
	}
  }

  /* Section Support */
.support-container {
	background-color: #f1f1f1;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  
  .support-container i {
	font-size: 30px;
	color: #007BFF;
	margin-right: 15px;
  }
  
  .support-info p {
	font-size: 14px;
	color: #333;
	margin: 5px 0;
  }
  
  .support-info a {
	color: #007BFF;
	text-decoration: none;
  }
  
  .support-info a:hover {
	text-decoration: underline;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
	.support-container {
	  flex-direction: column;
	  align-items: flex-start;
	}
  
	.support-container i {
	  margin-bottom: 10px;
	}
  }
  
  