.title {
    color: #000000;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    margin-top: 40px;
}
.full-width {
    width: 100% !important;
}
.center-screen {
  display: flex;
  flex-direction: column;   /* Stack children vertically */
  justify-content: center;
  align-items: center;
  height: 100vh;            /* Full viewport height */
  background-color: #f9f9f9;
}

/* Style the link like a button */
.btn-link {
  display: inline-block;
  padding: 10px 24px;
  background-color: #007bff; /* Bootstrap blue */
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.btn-link:hover {
  background-color: #0056b3;
}

.input-field {
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-field:focus {
  color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 0 0 transparent;

}

.submit-btn {
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 5px;
	color: #fff;
    cursor: pointer;
	background-color: #0d6efd;
	border: 1px solid #0d6efd;
	box-shadow: none;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.submit-btn:hover {
	background-color: #0b5ed7;
	border-color: #0a58ca;
	color: #fff;
	text-decoration: none;
}

.submit-btn:active {
	background-color: #0a58ca;
	border-color: #0a53be;
	color: #fff;
}
.mt-12px {
  margin-top: 12px;
}

.profile-table {
  width: 100%;
  max-width: 600px;
  margin: auto;
  border-collapse: collapse;
}

.profile-table td {
  padding: 10px;
  border: 1px solid #ccc;
}