h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin: 3rem;
}
form {
    width: 30rem;
    max-width: 98%;
    margin: 0 auto;
}
.guide {
    margin-bottom: 1rem;
}
.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.input-field.full {
    width: 100%;
}
label p {
    margin-left: .7rem;
    margin-bottom: .25rem;
}
input, select, textarea {
    width: 100%;
    padding: .5rem;
    border: 1px solid black;
}
input {
    min-height: 2rem;
    border-radius: 10px;
}
select {
    min-height: 2rem;
    border-radius: 5px;
}
textarea {
    min-height: 5rem;
    border-radius: 10px;
    resize: none;
}
input.invalid, textarea.invalid {
    outline: 1px solid red;
    animation: invalid 0.5s linear forwards;
}
.submit-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
#form-submit {
    display: inline-block;
    color: white;
    background-color: #d3271e;
    padding: .25rem 2rem;
    border-radius: 5px;
}
#form-submit h2 {
    color: white;
}
.err {
    color: red;
    margin-bottom: 2rem;
    text-align: center;
}
.loading {
    width: 1.5rem;
    margin-left: 1rem;
    display: none;
}
.required {
    color: red;
}
p {
	margin-bottom: 20px;
}

.text-block {
    margin: 2rem 6rem;
}

#table-investor-container {
    margin: 3rem auto;
    overflow-x: auto;
}

#table-investor-container::-webkit-scrollbar {
    height: 12px;
}
#table-investor-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    box-shadow: inset 0 0 6px rgba(0,0,0,0); 
    border-radius: 10px;
}
#table-investor-container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.12);
}
#table-investor {
    border-collapse: separate;
    border-spacing: 2px 4px;
    text-align: center;
    width: 50rem;
    max-width: 100%;
    margin: 0 auto;
}
#table-investor td {
    padding: 1rem;
}
#table-investor thead td, #table-1 tfoot td {
    color: white;
    background-color: #193786;
}
#table-investor tbody tr:nth-child(odd) td {
    background-color: #a6badf;
}

#table-investor tbody tr:nth-child(even) td {
    background-color: #d3ddf0;
}


@media (max-width: 768px) {
    .row {
        flex-direction: column;
        margin: 0;
    }
    .input-field {
        margin-bottom: 1rem;
    }
    textarea {
        min-height: 8rem;
    }
}
