body {
    text-align: center;
    background-color: lightgreen;
    margin-bottom: 40px;
}

.user-wrapper {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 9999;
}

.user-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1e88e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.user-circle:hover {
    background: #1565c0;
}

.logout-box {
    display: none;
    margin-top: 10px;
    text-align: center;
}

.logout-box button {
    padding: 6px 12px;
    border: none;
    background: #d32f2f;
    color: black;
    border-radius: 5px;
    cursor: pointer;
}

.user-info {
    margin-bottom: 8px;
    font-size: 14px;;
    color: #333;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}
#forgotButton {
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
}


#forgotBox {
     position: absolute;
    margin-top: 15px;
    padding: 50px;
    border: 1px solid black;
    border-radius: 8px;
    background-color: lightsalmon;
}
.user-wrapper.forgot {
     position: absolute;
    top: 170px;
    left: 900px;
}
