@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    
body {
    overflow-y: scroll;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    background: url('../image/background1.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center center;
    background-color: #f0c602;
}

.container {
    overflow: hidden;
    background-color: rgb(255, 224, 212);
    max-width: 700px;
    margin: auto;
    padding: 40px;
    border: 3px solid rgb(217, 150, 150);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.511);
}

h1,
h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600 !important;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

label {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

input, select{
    min-width: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 9px;
    border: none;
    background-color: rgb(251, 194, 194);

    color: rgb(0, 0, 0);
    padding: 8px;
    font-size: 16px;
}

button {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 9px;
    border: none;
    padding: 10px;
    font-size: 16px;
    background-color: #e69d27;
    color: rgb(46, 11, 11);
    cursor: pointer;
    font-weight: 600;
    transition-duration: 0.2s;
}

button:hover {
    background-color: #d97e15;
}

hr {
    margin: 50px 0;
    border-radius: 20px;
    border: 2px solid rgb(251, 194, 194);
}

.transition-group,
.initial-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.transition-group label,
.initial-group label {
    grid-column: span 1;
}

.transition-group input,
.initial-group input {
    grid-column: span 1;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table,
th,
td {
    border: 1px solid #000000;
}

th,
td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: rgb(251, 194, 194);
}