body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 200px;
    width: 200px;
}

.login-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    text-align: center;
}

.login-container h2 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0;
}

.form-group h2 {
    margin: 0;
    font-size: 16px;
    width: 20%;
    text-align: left;
}

.form-group input[type="email"],
.form-group .password-wrapper {
    width: 80%;
}

.form-group input[type="email"],
.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
    width: calc(100% - 30px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-wrapper {
    display: flex;
    align-items: center;
}

.checkpoint-label {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #ff9900;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.login-container a {
    display: block;
    margin: 10px 0;
    color: #ff9900;
    text-decoration: none;
}

.login-container a:hover {
    text-decoration: underline;
}

button {
    transition: transform 0.3s ease;
}

button:hover {
    transform: scale(1.1); /* Increase the size by 10% */
}

#username {
    margin-left: auto; 
  }