body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ECEFF1;
  }
  
  .form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  h1 {
    font-size: 24px;
    color: #212121;
    margin-bottom: 8px;
  }
  
  hr {
    border: none;
    height: 1px;
    background: #BDBDBD;
    margin-bottom: 24px;
  }
  
  .mdc-text-field {
    position: relative;
    margin-top: 16px;
    margin-bottom: 8px;
    width: 95%;
    margin-left: 3%;
  }
  
  .mdc-text-field__input {
    border: none;
    border-bottom: 1px solid #BDBDBD;
    display: block;
    width: 100% !important;
    padding: 16px 0;
    background-color: transparent;
    font-size: 16px;
    color: #0000008a;
    padding-bottom: 10px;
    border-radius: 2px;
    background-color: whitesmoke;
    margin-bottom: 10px;
    padding-inline: 8px;
  }
  
  
  .mdc-text-field__input:focus {
    outline: none;
    border-bottom: 2px solid #4d5ee0;
    background-color: #ddd;
  }
  
  .mdc-floating-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left bottom;
    color: #757575;
    font-size: 16px;
    pointer-events: none;
  }
  
  .mdc-text-field__input:focus ~ .mdc-floating-label,
  .mdc-text-field__input:not(:placeholder-shown) ~ .mdc-floating-label {
    transform: translateY(-140%) scale(0.75);
    color: #4d5ee0;
  }
  
  .mdc-line-ripple {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4d5ee0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mdc-text-field__input:focus ~ .mdc-line-ripple {
    transform: scaleX(1);
  }
  
  small {
    display: block;
    font-size: 12px;
    color: #757575;
    margin-top: 4px;
  }
  
  .buttons {
    margin-top: 36px;
    gap: 10px; /* Space between buttons */
    display: flex;
    justify-content: flex-end;
    box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #00000;
  }
  
  .mdc-button {
    padding: 0 16px;
    height: 36px;
    font-size: 14px;
    line-height: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4d5ee0;
    border: none;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
  }
  
  
  
  .mdc-button--raised {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .form-container {
      margin: 20px;
    }
  }
  
  /* Ensure input fields take full width */
  .mdc-text-field__input {
    box-sizing: border-box; /* Ensure padding is included in the width */
    width: calc(100% - 20px); /* Adjust width to account for padding */
  }
  
  /* Align buttons next to each other with proper styling */
  .buttons {
    display: flex;
    justify-content: flex-end; /* Adjust as needed */
    margin-right:2%;
  }
  
  .cancel-button {
    background-color: #ffffff;
    color: #4d5ee0;
    border: 1px solid #ccc; /* Light grey border */
  }
  
  .submit-button {
    background-color: #4d5ee0; /* Material Design primary color */
    color: #ffffff;
    font-family: Roboto,Helvetica Neue,sans-serif;
    font-size: 14px;
    font-weight: 500;
  }
  
  /* Add padding to the container to ensure content doesn't touch the edges */
  .form-container {
    padding: 20px; /* Adjust as needed */
  }