/**
 * All of the CSS for the public-facing functionality of the plugin.
 */

/* Google Login Button */
.meeteam-google-login-wrapper {
    margin: 20px 0;
    text-align: center;
}

.meeteam-google-login-separator {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.meeteam-google-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e5e5;
    z-index: 0;
}

.meeteam-google-login-separator span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: #fff;
    color: #777;
    font-size: 14px;
    line-height: 1;
    z-index: 1;
}

.meeteam-google-login-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #757575;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s;
    border: 1px solid #ddd;
}

.meeteam-google-login-button:hover {
    background-color: #f5f5f5;
    color: #757575;
    text-decoration: none;
}

.meeteam-google-login-button .google-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="18" height="18" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M17.64 9.205c0-.639-.057-1.252-.164-1.841H9v3.481h4.844a4.14 4.14 0 01-1.796 2.716v2.259h2.908c1.702-1.567 2.684-3.875 2.684-6.615z" fill="%234285F4" fill-rule="nonzero"/%3E%3Cpath d="M9 18c2.43 0 4.467-.806 5.956-2.18l-2.908-2.259c-.806.54-1.837.86-3.048.86-2.344 0-4.328-1.584-5.036-3.711H.957v2.332A8.997 8.997 0 009 18z" fill="%2334A853" fill-rule="nonzero"/%3E%3Cpath d="M3.964 10.71A5.41 5.41 0 013.682 9c0-.593.102-1.17.282-1.71V4.958H.957A8.996 8.996 0 000 9c0 1.452.348 2.827.957 4.042l3.007-2.332z" fill="%23FBBC05" fill-rule="nonzero"/%3E%3Cpath d="M9 3.58c1.321 0 2.508.454 3.44 1.345l2.582-2.58C13.463.891 11.426 0 9 0A8.997 8.997 0 00.957 4.958L3.964 7.29C4.672 5.163 6.656 3.58 9 3.58z" fill="%23EA4335" fill-rule="nonzero"/%3E%3Cpath d="M0 0h18v18H0z"/%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: contain;
}

.meeteam-google-login-button .button-text {
    display: inline-block;
    font-size: 14px;
}

/* Login Form Integration */
.login form ~ .meeteam-google-login-wrapper {
    margin-top: 20px;
}

/* Responsive styles */
@media screen and (max-width: 480px) {
    .meeteam-google-login-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
} 