body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.app-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
input[type="email"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #005049;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #005049;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

button:hover {
    background-color: #037E8C;
}
.thank-you-container {
    text-align: center;
    padding: 50px 20px;
    max-width: 600px;
    margin: 100px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.logo-container img {
    max-width: 180px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.thank-you-container h1 {
    color: #005049; /* Dark teal color, adjust based on brand color */
}

.thank-you-container p {
    color: #333; /* Dark gray text */
    font-size: 16px;
    margin-top: 0;
}

.thank-you-container .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #005049; /* Dark teal background */
    color: #ffffff; /* White text */
    text-decoration: none;
    border-radius: 5px;
}

.thank-you-container .btn:hover {
    background-color: #037E8C; /* A lighter teal */
}

