form label {
	float: left;
	width: 150px;
	margin-bottom: 5px;
	margin-top: 5px;
}
.clear {
	display: block;
	clear: both;
	width: 100%;
}

.submitbtn {
    background-color: #adc5e7;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius:6px;
    color: #000033;
    font-family: 'Oswald';
    font-size: 20px;
    text-decoration: none;
     border:none;
}



.submitbtn:hover {
    border: none;
    background:#def0dd;
    box-shadow: 0px 0px 1px #777;
    
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --input-border: #ADC5E7;
  --input-focus-h: 215;
  --input-focus-s: 100%;
  --input-focus-l: 42%;
}

.input {
  font-size: 12px;
  // Capitalized to prevent Sass
  // thinking it's the Sass max()
  font-size: Max(16px, 1em);
  font-family: inherit;
  padding: 0.25em 0.5em;
  background-color: #fff;
  border: 2px solid var(--input-border);
  border-radius: 4px;
  transition: 180ms box-shadow ease-in-out;
}

.input:focus {
  border-color: hsl(
    var(--input-focus-h),
    var(--input-focus-s),
    var(--input-focus-l)
  );
  box-shadow: 0 0 0 3px
    hsla(
      var(--input-focus-h),
      var(--input-focus-s),
      calc(var(--input-focus-l) + 40%),
      0.8
    );
  outline: 3px solid transparent;
}

.rosu{
	font-size:18px;
	font-weight: bold;
	color: red  !important;
	text-align: left;
	padding: 0px 0px 0px 0px;
	line-height:normal;
}