@charset "utf-8";
/* CSS Document */

       	.google-btn {
            display: inline-flex;
            align-items: center;
            background-color: #ffffff;
            border: 1px solid #dadce0;
            border-radius: 4px;
            color: #3c4043;
            cursor: pointer;
            font-family: 'Google Sans', Roboto, Arial, sans-serif;
            font-size: 14px;
            height: 40px;
            justify-content: center;
            padding: 0 12px;
            text-decoration: none;
            transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
            white-space: nowrap;
            width: 100%;
            max-width: 400px;
            min-width: 200px;
			margin-bottom: 14px;
        }

        .google-btn:hover {
            background-color: #f8f9fa;
            border-color: #dadce0;
            box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
        }

        .google-btn:focus {
            background-color: #f8f9fa;
            border-color: #4285f4;
            box-shadow: 0 0 0 1px #4285f4;
            outline: none;
        }

        .google-btn:active {
            background-color: #f1f3f4;
            border-color: #dadce0;
            box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
        }

        .google-icon {
            height: 18px;
            width: 18px;
            margin-right: 8px;
        }

        .button-text {
            font-weight: 500;
            letter-spacing: 0.25px;
        }

           

        .result {
            margin-top: 20px;
            padding: 16px;
            background-color: #e8f0fe;
            border-radius: 8px;
            color: #1967d2;
            display: none;
        }
    

