﻿input[type="text"] {
    border: solid 1px #6692ae;
    padding: 5px;
    width: 90%;
}

    input[type="text"]:focus {
        background-color: #e6efff;
        outline: none;
        -moz-box-shadow: 3px 3px 0px 0px #ffd800;
        -webkit-box-shadow: 3px 3px 0px 0px #ffd800;
        box-shadow: 0px 0px 6px 0px #ffd800;
    }
    input[type="text"]:disabled {
        cursor:no-drop;
    }
/*-------------------E-MAIL FIELD------------------*/
input[type="email"] {
    border: solid 1px #6692ae;
    padding: 3px;
    width: 90%;
}

    input[type="email"]:focus {
        background-color: #e6efff;
        outline: none;
        -moz-box-shadow: 3px 3px 0px 0px #ffd800;
        -webkit-box-shadow: 3px 3px 0px 0px #ffd800;
        box-shadow: 0px 0px 6px 0px #ffd800;
    }
    input[type="email"]:disabled {
        cursor:no-drop;
    }
/*-------------------NUMBER FIELD--------------*/
input[type="number"] {
    border: solid 1px #6692ae;
    padding: 3px;
    width: 90%;
}

    input[type="number"]:focus {
        background-color: #e6efff;
        outline: none;
        -moz-box-shadow: 3px 3px 0px 0px #ffd800;
        -webkit-box-shadow: 3px 3px 0px 0px #ffd800;
        box-shadow: 0px 0px 6px 0px #ffd800;
    }
    input[type="number"]:disabled {
        cursor:no-drop;
    }
/*---------PASSWORD FIELD----------------*/
input[type="password"] {
    border: solid 1px #6692ae;
    padding: 5px;
    width: 90%;
}

    input[type="password"]:focus {
        background-color: #e6efff;
        outline: none;
        -moz-box-shadow: 3px 3px 0px 0px #ffd800;
        -webkit-box-shadow: 3px 3px 0px 0px #ffd800;
        box-shadow: 0px 0px 6px 0px #ffd800;
    }
    input[type="password"]:disabled {
        cursor:no-drop;
    }
/*-------------BUTTON STYLE 1----------------*/
.button1 {
    padding: 4px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #65CEA7;
    border: solid 1px #059f58;
    font-family: Verdana;
    font-size: small;
    text-transform: uppercase;
    outline: none;
}

    .button1:hover {
        cursor: pointer;
        -moz-box-shadow: 3px 3px 0px 0px #a1a1a1;
        -webkit-box-shadow: 3px 3px 0px 0px #a1a1a1;
        box-shadow: 0px 0px 4px 0px #a1a1a1;
        color:white;
    }
a {
    text-decoration: none;
}

img {
    border: none;
}

select {
    padding:4px;
    width:93%;
    outline:none;
    border:solid 1px #6692ae;
}
select:focus {
    -moz-box-shadow: 3px 3px 0px 0px #ffd800;
        -webkit-box-shadow: 3px 3px 0px 0px #ffd800;
        box-shadow: 0px 0px 6px 0px #ffd800;
}
    select:disabled {
        background-color:#f2f1f1;
        cursor:no-drop;
    }

textarea {
    border: solid 1px #6692ae;
    padding: 3px;
    width: 95%;
}
    textarea:focus {
        -moz-box-shadow: 3px 3px 0px 0px #ffd800;
        -webkit-box-shadow: 3px 3px 0px 0px #ffd800;
        box-shadow: 0px 0px 6px 0px #ffd800;
    }

    textarea:focus {
        background-color: #e6efff;
        outline: none;
    }