body {
    font-family: 'Open Sans', sans-serif;
    background: #fafafa;
    font-size: 1em;
}

.error {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
}

.content-area {
    background-color: #fff; /* Change #e5e5e5 to #fff for a cleaner look */
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05), 0 0px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px; /* You can adjust this value */
    margin: 10px auto;
}

.status-container {
    display: flex;
    justify-content: center; /* Center statuses horizontally */
    flex-wrap: wrap;
    margin-top: 10px;
}

.status {
    text-align: center;
    margin: 5px;
    width: 15%;
    font-size: 1em;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}
.status img {
    width: 90%;
    max-width: 90px;
}

.status-true {
    color : black; /* light green */
}

.status-false {
    color: lightgray; /* light red */
}


.information {
    color: #666;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    padding: 5px;
}

.my-form {
    /* Adjusted padding and increased border-radius for a better look */
    width: 90%;
    max-width: 600px;
    padding: 20px 30px;
    margin: 10px auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05), 0 0px 40px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
}

.my-form h2,
.my-form p,
.status-title {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.my-form input[type=text] {
    border: 2px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    color: #666;
}

.my-form input[type=text]:focus {
    border-color: #5C5C5C;
}

.my-form input[type=submit] {
    background: none;
    border: none;
    display: block;
    width: 200px;
    height: 40px;
    margin: 10px auto;
    background: #5C5C5C;
    text-align: center;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    box-shadow: 0px 5px 15px -5px #00000070;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.my-form input[type=submit]:hover {
    box-shadow: 0px 1px 5px 0px #333;
    transform: translateY(-3px);
}

.my-form input[type=submit]:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff30;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.my-form input[type=submit]:active {
    transform: translateY(-1px);
}

.my-form input[type=submit]:active:before {
    visibility: visible;
    width: 200%;
    height: 200%;
    transition: all 0.15s ease-in-out;
}
#error-message {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 5px;
    text-align: center;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
    background-color: #FFC7C7;
    display: none;
}
