h1 {
    font-weight: 600;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.login-container {
    background: #fff;
    padding: 20px;
    border-radius: 15px; /* Adjusted to make it more round */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.login-container input {
    padding: 1rem;
    width: calc(100% - 2rem);
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.login-container button {
    padding: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px; /* Adjusted to match the overall style */
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #888;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid #888;
}

.divider::before {
    margin-right: .25em;
}

.divider::after {
    margin-left: .25em;
}

.login-button {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 25px; /* More rounded edges */
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the text */
    transition: background 0.3s, border-color 0.3s;
    position: relative;
}

.login-button .icon {
    position: absolute; /* Absolute position to the left */
    left: 16px; /* Keeping some space to the left */
    margin-right: 1rem;
    margin-left: 0;
    vertical-align: middle;
    width: 20px;
    height: auto;
}

.login-button:hover {
    background: #f0f0f0;
    border-color: #999;
}

#sign-in-button {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 25px; /* More rounded edges */
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the text */
    transition: background 0.3s, border-color 0.3s;
    position: relative;
}

#sign-in-button:hover {
    background: #1b81d7;
    border-color: #999;
    cursor: pointer;
    color: white;
}
