.hero-minimal {
    padding-top: 5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-minimal h1 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.section-form {
    padding: 6rem 0;
}

.form-wrapper {
    background: var(--card-background);
    border-radius: 15px;
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.form-error {
    color: #ff006e;
    display: none;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.2);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.3);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

.google-account-note {
    background: var(--card-background);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.google-account-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.google-account-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.google-account-note a:hover {
    text-decoration: underline;
}