body {
    font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
    background-color: #e2e1e1;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.navbar {
    width: 100%;
    background-color: #4CAF50;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
}

.navbar .right {
    float: right;
}

.navbar .left {
    float: left;
}

.navbar a {
    display: inline-flex;
    align-items: center;
    padding: 10px 10px;
    text-decoration: none;
    color: white;
    background-color: #2980b9;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    margin-right: 20px;
}

.container-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
}

.container {
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 60px;
    min-width: 300px;
    min-height: 200px;
    border: 1px solid rgb(202, 197, 197);
}

.user-email {
    padding: 10px;
    text-decoration: underline;
}

.material-symbols-outlined {
    margin-right: 5px;
}