/* Styles for form container */
body{
  background-color: #e8c9cd;
  justify-content: center;
    align-items: center;
    margin: 0;
    display: flex;
    height: 100vh; /* Full viewport height */
}
.form-container {
    min-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-sizing: border-box; /* Include padding and border in width calculation */
}
  
  
  /* Styles for form labels */
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  /* Styles for form inputs */
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  /* Style for submit button */
  input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: lightseagreen;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size:20px ;
  }
  
  /* Style for error message */
  .error-message {
    color: red;
    margin-bottom: 15px;
  }
  /* Style for the button container */
.button-container {
    text-align: center; /* Align button to the left */
    margin-bottom: 20px; /* Add some bottom margin for spacing */
   
  }
  
  /* Style for the button */
  .button-container button {
    padding: 15px 25px; /* Add padding to the button */
    background-color: seagreen; /* Button background color */
    color: #fff; /* Text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Add border radius */
    cursor: pointer; /* Add pointer cursor */
    text-decoration: none; /* Remove default button underline */
    font-size: 15px;
  }
  
  /* Hover effect for the button */
  .button-container button:hover {
    background-color: darkcyan; /* Darken the background color on hover */
  }
  .add-trust-btn {
    background-color: #3498db;
}

.add-trust-btn:hover {
    background-color: #2980b9;
}
  
h2{
  text-align: center;
}