/* General Page Styling */
body {
	font-family: Arial, sans-serif;
	background-color: #1a1a2e;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
  }
  
  /* Background Container */
  .form-background {
	background-color: #2a2a47;
	border: 1px solid #3a3a5c;
	border-radius: 10px;
	padding: 30px 50px 30px 30px;
	width: 350px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Error Box */
  .error-box {
	margin-bottom: 20px;
	padding: 10px;
	background-color: #ff4c4c;
	border: 1px solid #ff1a1a;
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
  }
  
  .hidden {
	display: none;
  }
  
  /* Form Container */
  form {
	display: flex;
	flex-direction: column;
  }
  
  /* Labels and Inputs */
  label {
	margin-bottom: 10px;
	font-size: 14px;
	color: #cccccc;
  }
  
  input[type="text"],
  input[type="password"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #3a3a5c;
	border-radius: 5px;
	background-color: #1e1e30;
	color: #ffffff;
	font-size: 14px;
  }
  
  input[type="text"]::placeholder,
  input[type="password"]::placeholder {
	color: #888888;
  }
  
  input[type="text"]:focus,
  input[type="password"]:focus {
	border-color: #00aaff;
	outline: none;
  }
  
  /* Button Styling */
  button {
	width: 100%;
	padding: 10px;
	background-color: #0056b3;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  button:hover {
	background-color: #0066cc;
  }
  
  .title-head {
	color: #ffdf00;
	font-size: 30;
	text-align: center;
  }
  
  .c-text {
	color: #888888;
	font-size: 11px;
	text-align: center;
  }
  