*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#efefef;
}


.container{
    width:900px;
    margin:30px auto;
    text-align:center;
}

h1{
    font-size:20px;
    font-weight:bold;
    margin-bottom:15px;
    color:#111;
    text-transform:uppercase;
}


table{
    width:85%;
    margin:auto;
    border-collapse:collapse;
    margin-bottom:25px;
    box-shadow:0 4px 10px rgba(0,0,0,.12);
}

th{
    background:#0b00ff;
    color:#fff;
    padding:10px;
    font-size:13px;
    border:1px solid #6f6fff;
}

td{
    padding:10px;
    font-size:12px;
    text-align:left;
    border:1px solid #ddd;
}

tr:nth-child(even){
    background:#f4f4f4;
}

tr:nth-child(odd){
    background:#dfdfdf;
}

.form-box{
    width:350px;
    margin:20px auto;
    background:#fff;
    border-radius:10px;
    padding:25px 15px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.form-box h2{
    text-align:center;
    color:#3b4d63;
    font-size:18px;
    margin-bottom:25px;
}

label{
    display:block;
    text-align:left;
    font-size:11px;
    font-weight:bold;
    margin-bottom:5px;
    margin-top:12px;
}

input,
select,
textarea{
    width:100%;
    height:32px;
    border:1px solid #d8d8d8;
    border-radius:3px;
    padding:5px 8px;
    font-size:12px;
    outline:none;
}

textarea{
    height:70px;
    resize:none;
}

input:focus,
select:focus,
textarea:focus{
    border:1px solid #3498db;
}

button{
    width:100%;
    margin-top:15px;
    background:#3498db;
    color:#fff;
    border:none;
    height:34px;
    border-radius:2px;
    font-size:12px;
    cursor:pointer;
}

button:hover{
    background:#2587ca;
}