﻿body {
    background-color: grey;
    margin: 0px;
    overflow-x: hidden;
    background-image: url(../pics/BG_conta.jpg);
    background-size: 1920px 1080px;
    background-size: cover;
    width: 100%;
}

.page {

    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    height: 650px;
    width: 1000px;
    top: 15px;
    padding-top: 20px;
    padding-left: 40px;
    text-align:center  ;
    padding-top:100px;
    color:wheat;

}


h3 {

    font-size : 25px;

}

input[type=text] {
    border: none;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    background-color: rgba(230, 230, 230, 0.2) ;
    color: wheat;

}

input[name=msg] {
    border: none;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    background-color: rgba(230, 230, 230, 0.2);
    color: wheat;
    width: 400px;
    height: 250px;
}


input[type=email] {
    border: none;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    background-color: rgba(230, 230, 230, 0.2);
    color: wheat;
}

textarea {
    min-height: 250px;
    max-height: 250px;
    min-width: 350px;
    max-width: 350px;
    border: none;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    background-color: rgba(230, 230, 230, 0.2);
    color: wheat;
}

input[type=submit] {
    cursor: pointer;
    margin: 40px;
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
}
    input[type=submit]:hover {

        background-color: #3e8e41

    }

    input[type=submit]:active {

        background-color: #3e8e41;
        box-shadow: 0 5px #666;
        transform: translateY(4px);

    }

input[type=reset] {
    cursor: pointer;
    margin: 40px;
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: red;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
}

    input[type=reset]:hover {
        background-color: #d80000
    }

    input[type=reset]:active {
        background-color: #b70000;
        box-shadow: 0 5px #666;
        transform: translateY(4px);
    }

.alert {
    color: #90cc90;
    font-size: 40px;
    text-align: center;
    position: relative;
    border: double wheat;
    border-radius: 15px;
    background-color: transparent;
    width: 400px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.pointer {

    cursor: pointer;
}