body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #001c42;
    color: #ffffff;
    text-align: center;
    padding: 20px;
  }
  
  img {
    width: 180px;
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
  }
  
  h1 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-family: 'Times New Roman', Times, serif;
  }
  
  p {
    color: #ffffffcc;
    font-size: 1.2rem;
    max-width: 400px;
    margin-bottom: 30px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff11;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Times New Roman', Times, serif;
    position: relative;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input[type='text'],
  input[type='email'] {
    padding: 10px;
    font-size: 1rem;
    width: 250px;
    max-width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ffffff88;
    border-radius: 5px;
    background: #ffffff22;
    color: #ffffff;
    transition: border-color 0.3s, background 0.3s;
  }
  
  input:focus {
    border-color: #ffffff;
    background: #ffffff33;
    outline: none;
  }
  
  button {
    padding: 10px 25px;
    font-size: 1rem;
    color: #001c42;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
  }
  
  button:hover {
    background-color: #f0f0f0;
  }
  