@charset "utf-8";

body{
    font-family: "Segoe UI";
    background-color: #f5f5f5;
}

table{
    border: 2px solid gray;
    border-collapse: collapse;
    margin: 0px auto;
    box-shadow: 0 0 50px rgba(0,0,0,0,3);
    margin-bottom: 50px;
    width: 80%;
}

caption{
    font-size: 2.5cm;
    font-weight: bold;
    padding: 12px;
}

th,td{
    border: 2px solid white;
    padding: 15px;
    font-size: 1.1cm;
}

tr{
    background-color: rgb(242,238,238);
}

tr:nth-child(odd){
    background-color: rgb(0, 140, 255);
}

.container{
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0,3);
}

h1{
    text-align: center;
    color: #2c3e50;
}

form{
    display: flex;
    flex-direction: column;
}

label{
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

input,select,textarea{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button{
    margin-top: 20px;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

button:hover{
    background: #2980b9;
}