@import "styles.css";

@font-face {
    font-family: Clarkson;
    src: url('/htmlFP/fonts/ClarksonScript-Regular.otf') format('opentype');
}

@font-face {
    font-family: atwriter;
    src: url('/htmlFP/fonts/atwriter.ttf') format('truetype');
}
.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.table-form-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.table-container {
    flex: 1;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse:collapse;
}

th, td {
    border: 1px solid #fff;
    padding: 8px;
    text-align: center;
}

.form-container {
    flex: 1;
}
A
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

fieldset {
    border: 1px solid #fff;
    padding: 10px;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .table-form-wrapper {
        flex-direction: column;
        align-items: center;
    }
}


label, input, textarea {
    display: block;
    width: 100%;
}