body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: #52637a;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: left;
    color: white;
}

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

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

input {
    width: calc(100% - 300px);
    height: 30px;
    margin-bottom: 10px;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-button,
.verify-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-button,
.verify-button:hover {
    background-color: #0056b3;
}

.verify-button{
    height: 40px;
}

.user-email,
.login-button {
    display: inline-block;
    margin-right: 20px;
}

.menu-items {
    display: flex;
    align-items: left;
}

.menu-item {
    margin-right: 20px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.loading {
    display: inline-block;
    /* width: 20px;
    height: 20px; */
}

.loading:after {
    content: " ";
    display: block;
    width: 12px;
    height: 12px;
    margin: 8px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading 1.2s linear infinite;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}