body {
    background-color: #f2f2f2;
    color: #92D103;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    text-align: center;
}

.sign-area {
    background: #0074e4;
    color: #fff;
    border-radius: 12px;
    padding: 2.5em 2em;
    margin-top: 17px;
}

/* Add this CSS to change the login button color to green */
.btn-round {
    background-color: #4CAF50; /* Green background color */
    border: none;
    color: #fff;
    border-radius: 25px;
    height: 42px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-round:hover, .btn-round:focus, .btn-round:active {
    background-color: #45A049; /* Darker green on hover */
    outline: none;
}

/* Rest of your CSS styles... */
