html, body {
	font-family: "Roboto", sans-serif;
	margin: 0;
}

header {
	background: rgb(27,21,133);
	background: linear-gradient(145deg, rgba(27,21,133,1) 0%, rgba(49,49,226,1) 50%, rgba(0,212,255,1) 100%);
	color: white;
	padding: 10px;
	text-align: center;
	padding-bottom: 20px;
}

nav {
    margin-bottom: 10px;
    margin-top: -10px;
}

nav a {
	margin-left: 7px;
	margin-right: 7px;
	color: orange;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}

nav a:hover {
	color: #fff;
}

.wrapper-body {
    margin-bottom: 0px;
	padding: 0 40px;
	overflow: auto;
}

.panel {
	min-width: 736px;
	width: fit-content;
    border-radius: 4px;
    box-shadow: 0 7px 38px rgba(0, 0, 0, 0.1), 0 15px 20px rgba(0, 0, 0, 0);
    padding: 32px;
    transition: box-shadow 0.3s ease;
    margin: 40px auto;	
}

.panel h1 {
	font-size: 24px;
	color: #00454f;
	margin: 0;
}

.panel h2 {
	padding-bottom: 8px;
    font-size: 16px;
    color: #00aec2;
    border-bottom: 1px solid #50af31;
    margin: 0;
    width: auto;
    display: inline-block;
    margin-bottom: 24px;
}

.panel h2.other {
	display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(0, 69, 79, 0.1);	
}

.panel h3, .panel h4 {
	padding-bottom: 8px;
    font-size: 20px;
    color: #00454f;
    margin: 0;
    width: auto;
}

.panel h4 {
	display: inline-block;
    border-bottom: 1px solid #50af31;
	margin-bottom: 16px;
}

.panel .cert-details {
	display: flex;
    flex-wrap: wrap;	
	font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #00454f;	
}

.panel .cert-details > * {
    flex-basis: 50%;	
}

.panel .cert-details p {
	display: flex;
	margin-bottom: 8px;
}

.panel .cert-details p span:first-child {
	flex-basis: 36%;
    font-weight: 700;
    color: #00454f;
    margin-right: 16px;	
}

label {
	font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

input[type="text"], input[type="date"], input[type="password"] {
	display: block;
    width: auto;
	height: 20px;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.42857;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	outline: none;
}

.inline-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
	align-items: end;
}

.vertical-group {
	display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
    margin-top: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
	width: 100%;
}

.vertical-group .form-group {
    flex: 1;
}

.vertical-group .form-group input[type="text"], .vertical-group .form-group input[type="date"] {
	width: 65%;
}

input[type="submit"], button {
    font-size: 16px;
	font-weight: bold;
    background-color: #256ea1;
    color: #fff;
    border-radius: 2px;
    height: 42px;
    padding: 11px 24px;
    transition: ease 0.3s;
    outline: none;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
}

input[type="submit"]:hover, button:hover {
	background-color: #fff;
	color: #256ea1;
	border-color: #256ea1;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
	margin: 0;
}

table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);	
}

table thead tr {
    background-color: #256ea1;
    color: #fff;
    text-align: left;
}

table th,
table td {
    padding: 6px 10px;
	border: 1px solid #000;
}

td button {
	width: 100%;
	margin: 3px 0;
    font-size: 12px;
    height: unset;
    padding: 5px 0;	
}

td button.red {
	background-color: red;
}

td button.red:hover {
	background-color: #fff;
	color: red;
	border-color: red;	
}