#google-workspace {
    width: 40%;
    margin: 100px auto;
}
#google-workspace fieldset {
    border: 1px solid grey;
    border-radius: 5px;
}
#google-workspace fieldset legend img {
    margin: 0 5px;
}
#result {
    text-align: center;
    margin: 10px;
}
.spinner {
    animation: rotate 1.5s linear infinite; 
}
@keyframes rotate{
    to{ transform: rotate(360deg); }
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.hidden {
    display: none;
}