﻿body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #fff;
    font-family: Arial;
    font-size: 12px;
}

a {
    color: #5379fa;
}

input {
    width: 250px;
    height: 30px;
    background: transparent;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 2px;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 4px;
    margin: 3px !important;
}

    input[type="button"], input[type="submit"] {
        -moz-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
        min-width: 50px;
        height: 35px;
        cursor: pointer;
        border-radius: 2px;
        font-family: 'Exo', sans-serif;
        font-size: 16px;
        font-weight: 400;
        padding: 6px;
        margin: 3px !important;
    }


.success {
    border: 2px solid #4CAF50 !important;
    background-color: white;
    color: #232222
}

    .success:hover {
        background-color: #4CAF50;
        color: white;
    }

.warning {
}

.danger {
}

.normal {
    background: #fff;
    border: 1px solid #fff;
    color: #a18d6c;
}

    .normal:hover {
        background: #d5d5d5;
        color: black;
    }

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    display: block;
    background: transparent;
    background-color: rgba(255,255,255,0.6);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
