﻿
body {
    font-family: Verdana;
    height: 100vh;
    backdrop-filter: blur(100px);
    background-color: #E3eff9;
}

a {
    color: #92badd;
}


h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 10px;
    
}

#formContent {
    -webkit-border-radius: 8px 8px 8px 8px;
    border-radius: 8px 8px 8px 8px;
    background: white;
    backdrop-filter: blur(10px);
    
    padding: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    
    /*-webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);*/
    text-align: center;
}

#formFooter {
    background-color: white;
    border-top: 2px dashed #7bb2e8;
    margin-left: 10px;
    margin-right: 10px;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}


h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}




input[type=button], input[type=submit], input[type=reset] {
    background-color: #7bb2e8;
    border: none;
    color: white;
    padding: 15px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    /*-webkit-box-shadow: 0 10px 10px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);*/
    -webkit-border-radius: 25px 25px 25px 25px;
    border-radius: 25px 25px 25px 25px;
    margin: 10px 0px 30px 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        background-color: white;
        color: #7bb2e8;
        opacity: .8;
    }

    input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text], input[type=password] {
    background-color: white;
    border-color: darkgrey;
    border: none;
    color: black;
    padding: 15px 15px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid darkgrey;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 2px;
    height: 50px;
}

    input[type=text]:focus, input[type=password]:focus {
        background-color: #e8eff6;
        border: none;
        
        border-bottom: 4px solid #a7cbef;
        box-shadow: 0px 0px;
        color: black;
    }

    input[type=text]:placeholder, input[type=password]:placeholder {
        color: darkgrey;
    }


.msg-error {
    background-color: white;
    border-left: 5px solid red;
    color: black;
    padding: 15px;
    margin-bottom: 10px;
    border-right: 1px solid darkgrey;
    border-bottom: 1px solid darkgrey;
    border-top: 1px solid darkgrey;
    box-shadow: darkgrey 4px 4px;
    text-align: left;
    margin-left: 35px;
    margin-right: 35px;
    margin-top: 20px;
}





*:focus {
    outline: none;
}

#icon {
    width: 60%;
}


.btn-small {
    border-radius: 3px;
    background-color: white;
    padding: 2px 6px 2px 6px;
    height: 35px;
    border: 0px solid black;
    color: dodgerblue;
    background-color: transparent;
    box-shadow: transparent 0px 0px inset;
    border: 0px solid transparent;
    font-size: 15px;
}

    .btn-small:hover {
        color: #e8eff6;
        text-decoration: none;
        background-color: transparent;
    }

    .btn-small:focus {
        border: 0px solid transparent;
        outline: none;
    }