.login-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.login-btn {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    padding: 12px;
    margin: 20px auto;
    /* Center and give vertical spacing */
    max-width: 80%;
    /* Prevent full width on mobile */
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    background: white;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    transition: background-color 0.2s ease;
    user-select: none;
    text-decoration: none;
    color: #444;
}

.login-btn:hover {
    background: #f5f5f5;
}

.login-btn img {
    height: 20px;
    width: 20px;
    justify-self: start;
}

.separator {
    margin: 30px 0 20px;
    font-size: 14px;
    color: #999;
    position: relative;
}

.separator:before,
.separator:after {
    content: '';
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    width: 40%;
}

.separator:before {
    left: 0;
}

.separator:after {
    right: 0;
}

.email-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

.email-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
}

.email-btn:hover {
    background-color: #555;
}