* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #1E1E1E;
    color: rgba(255, 255, 255, 0.5);
}

main>div {
    /* border: 2px solid rgba(255, 255, 255, 0.7); */
    width: 40vw;
    height: 36vh;
    margin: 50px 30px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

h1 {
    font-size: 36px;
    color: rgba(255, 255, 255);
}

form {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

form>div {
    margin-bottom: 20px;
}

form>div>input {
    height: 2.2rem;
    width: 430px;
    border: 1px solid white;
    padding: 5px 10px;
    font-size: 1.2rem;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main>div>form>#btnSubmit {
    background-color: white;
    color: black;
    width: 100%;
    height: 2.6rem;
    font-size: 1.2rem;
    padding: 5px;
    cursor: pointer;
    margin-top: 20px;
}


section {
    /* border: 1px solid white; */
    padding: 20px;
}

table {
    width: 100%;
}

table,tr,td,th {
    border: 1px solid white;
    border-collapse: collapse;
    padding: 5px 15px;
    height: 3rem;
}
table > tbody > tr,td {
    border-top: none;
    border-bottom: none;
}

.statusField {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

td > button {
    background-color: none;
    outline: none;
    border: none;
    cursor: pointer;
}