﻿body {
    background-color: #EDEDED;
}

.statoRegistrazioneLabel {
    font-size: 20px;
}

.registratiManualmenteBtn {
    margin-top: 15px;
}

.pannelli {
    margin-top: 20px;
}

.vodafoneBtn {
    border-color: #E80303;
    background-color: #E80303;
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px;
}

.err {
    color: red;
    font-weight: bold !important;
}

.vodafoneBtn:hover, .vodafoneBtn:focus, .vodafoneBtn:active {
    background-color: #C60202;
    border-color: #C60202;
    cursor: pointer;
    color: #FFFFFF;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(214, 0, 42, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(214, 0, 42, .6);
}

.txtVodafone {
    padding: 10px;
    text-align: center;
    border-color: #B5B5B5;
}

    .txtVodafone:focus {
        border-color: #d6002a;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(214, 0, 42, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(214, 0, 42, .6);
    }

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

    #snackbar.success {
        background-color: #34A853;
    }
    #snackbar.error {
        background-color: #EA4335;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
