@import url("https://fonts.googleapis.com/css?family=Lato:700|Open+Sans");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap");
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-top: 40px;
    max-width: 160px;
    height: auto;
}

.box {
    background-color: white;
    padding: 40px 30px;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.message {
    font-size: 20px;
    color: #0D2963;
    font-family: Manrope, sans-serif;
}

.checkmark {
    margin-top: 20px;
    max-width: 60px;
    height: auto;
}

.login-link {
  margin-top: 30px;
  font-size: 16px;
}

.login-link a {
  color: #10306b;
  font-family: Manrope, sans-serif;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}