* {
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f2f4f7;
    margin: 0;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card {
    background: #ffffff;
    width: 850px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
}

.header {
    background: #1f5fa3;
    color: #fff;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    margin: -30px -30px 20px -30px;
}

.subtitle {
    color: #555;
    margin-bottom: 25px;
}

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

.form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #1f5fa3;
}

.btn {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background: #1f5fa3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #174a82;
}

.note {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
}

.conf {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}

.table-wrap {
	margin-top: 25px;
	overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 4px;
    overflow: hidden;
}

.results-table thead th {
    background: #1f5fa3;
    color: #fff;
    text-align: left;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.results-table tbody td {
    padding: 12px 14px;
    border-top: 1px solid #e2e6ea;
    font-size: 14px;
    color: #333;
}

.results-table tbody tr:nth-child(even) {
    background: #f7f9fc;
}

.results-table tbody tr:hover {
    background: #eef5ff;
}


.error-alert {
    background-color: #f19800;
    background-image: url(img/application_error.png);
    background-position: left;
    background-repeat: no-repeat;
    border: #f19800 2px solid;
    color: white;
    font-size: 16px;
    height: auto;
    margin: 0 auto;
    margin-top: 3px;
    padding: 14px 14px 14px 40px;
    text-align: left;
    text-indent: 15px;
    vertical-align: middle;
    width: 100%;
}

.error-fatal {
    box-sizing:border-box;
    background:pink;
    border:red 1px solid;
    color: black;
    font-size: 20px;
    padding: 5px;
    text-align: left;
    width: 100%;
}

.error-fatal-details {
    box-sizing:border-box;
    background:pink;
    border:red 1px solid;
    border-top: 0;
    color: black;
    font-size: 20px;
    padding: 5px;
    text-align: left;
    width: 100%;  
}

.successful-message{
    background:#27ae60;
    background-image: url(img/accept.png);
    background-position: left; 
    background-repeat: no-repeat;
    border:#33AD73 1px solid;
    color: #ffffff;
    font-size: 16px;
    height: auto;
    margin: 0 auto;
    margin-top: 3px;
    padding: 14px 14px 14px 40px;
    text-align: left;
    text-indent:15px;
    vertical-align: middle;
    width: 100%;   
 }