.page {
	margin: 2rem;
	border-radius: 15px;
	height: auto;
	min-height: 75vh;
	flex: 1;
}
.page button, .addButton{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px 20px;
    margin: 5px 5px 10px 0;
    font-weight: 600;
    width: fit-content;
    min-width: 40px;
    height: 40px;
    font-size: 0.875rem;
    color: #f93839;
    border: 2px solid #f93839;
    background-color: transparent;
    transition: all linear 0.1s;
}
.page button:hover, .addButton:hover{
    color: #fff;
    background-color: #f93839;
}
.page h1{
    color: #000;
    margin-top: 0;
}
.page form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.page form div:has(label, input){
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.page form div:has(label, input) label{
    width: 100%;
    text-align: left;
}
.page label{
    padding: 10px 0 5px 0;
    font-size: 1.125rem;
    font-weight: 500;
}
.page input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) , .page select{
    padding: 5px;
    font-size: 1rem;
    width: 100%;
}
.page select{
    cursor: pointer;
}
.page textarea{
    min-height: 150px;
    padding: 5px;
    font-size: 1rem;
    resize: none;
}
.upload-button{
    color: #f93839;
}
@media screen and (max-width: 900px) {
	.page {
		margin: 1rem;
	}
}