*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f2f2f2;
    padding:30px;
}

h1{
    text-align:center;
    margin-bottom:20px;
    font-size:32px;
    font-weight:bold;
}

/*================ TABLE ================*/

table{
    width:100%;
    margin:0 0 35px;
    border-collapse:collapse;
    background:white;
    box-shadow:0 0 10px rgba(0,0,0,.2);
}

th{
    background:#1b28ff;
    color:white;
    padding:12px;
    font-size:15px;
}

td{
    padding:12px;
    border:1px solid #ddd;
}

tbody tr:nth-child(even){
    background:#ececec;
}

/*================ FORM ================*/

.form-box{
    width:100%;
    max-width:700px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 0 15px rgba(0,0,0,.2);
}

.form-box h2{
    text-align:center;
    margin-bottom:25px;
    color:#333;
}

label{
    display:block;
    margin-top:15px;
    margin-bottom:6px;
    font-weight:bold;
    font-size:14px;
}

input,
select,
textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:14px;
}

textarea{
    resize:none;
}

button{
    width:100%;
    margin-top:20px;
    padding:12px;
    border:none;
    border-radius:4px;
    background:#3498db;
    color:white;
    font-size:15px;
    cursor:pointer;
}

button:hover{
    background:#217dbb;
}