/* Login layout */
.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1565c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
}

.login-card {
    border: none;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    background: #fff;
}

.login-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
}

.btn-publigoo {
    background: linear-gradient(135deg, #1a237e, #1565c0);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    transition: opacity 0.2s;
}

.btn-publigoo:hover {
    opacity: 0.9;
    color: #fff;
}
