.tab-container {
    max-width: 400px;
    margin: 20px auto;
    background: #111;
    border-radius: 8px;
    padding: 20px;
}
.tab-nav {
    display: flex;
    margin-bottom: 20px;
}
.tab-link {
    flex: 1;
    padding: 12px;
    background: #222;
    color: #ff9800;
    text-align: center;
    cursor: pointer;
    border: none;
    border-bottom: 2px solid transparent;
}
.tab-link.active {
    border-bottom: 2px solid #ff9800;
    font-weight: bold;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.google-section {
    text-align: center;
    margin-top: 30px;
}
input, button {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
}
button {
    background: #ff9800;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}        
.google-btn {
    background: #fff;
    color: #757575;
    padding: 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid #ddd;
}
.google-btn:hover {
    background: #f8f8f8;
}
.lang-selector {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.lang-selector img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lang-selector img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(255, 152, 0, 0.6);
}
.lang-selector a.active img {
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.9);
    transform: scale(1.1);
}