
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    background:#f2f5f9;
    padding:40px;
}

.contact-box{

    width:500px;
    max-width:95%;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

h2{

    margin-bottom:20px;

}

input[type="text"] {
	border:1px solid #ccc;
	border-radius:4px;
    	font-size:15px;
}

input[type="email"] {
	border:1px solid #ccc;
	border-radius:4px;
    	font-size:15px;
}


input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom:15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size:15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

textarea{

    resize:vertical;

}

button{

    width:100%;
    padding:14px;
    border:none;
    border-radius:4px;
    background:#0056B3;
    color:white;
    font-size:16px;
    cursor:pointer;
}

button:hover{

    background:#0b5ed7;

}

button:disabled{

    background:#999;
    cursor:not-allowed;

}

.success{

    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    padding:15px;
    margin-bottom:20px;
    border-radius:4px;

}

.error{

    background:#f8d7da;
    color:#842029;
    border:1px solid #f5c2c7;
    padding:15px;
    margin-bottom:20px;
    border-radius:4px;

}

.char-count {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}


.gws-ident{
    position:absolute;
    left:-9999px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}
