.form-toggle {
    display: none;
}

.form-toggle.active {
    display: block;
}

.toggle-btn {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 8px 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin: 0 6px;
}

.toggle-btn.active,
.toggle-btn:focus {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.toggle-btn:hover {
    background-color: #eee;
}

.btn-google {
    border: none;
    padding: 0;
    background: transparent;
    display: block;
    text-decoration: none;
    width: 100%;
}

.btn-google img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.gsi-material-button {
    border: 1px solid #080808;
    border-radius: 25px;
    padding: 0;
    background: #fff;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: box-shadow 0.2s ease;
    width: 260px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.gsi-material-button-content-wrapper {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 6px 48px;
    gap: 5px;
}

.gsi-material-button-icon img {
    width: 24px;
    height: 24px;
}

.gsi-material-button .gsi-material-button-contents {
    font-weight: 500;
    color: #3c4043;
    flex-grow: 1;
}

.gsi-material-button:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.gsi-material-button:focus-visible {
    outline: 2px solid #4285F4;
    outline-offset: 3px;
}