/* submit.css */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

h2 {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    padding: 8px 0;
}

form {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    margin: 0;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"]{
    width: 90%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #003160;
    color: #fff;
    /* background-color: #fff;
    color: #000; */
    cursor: pointer;
}

#toast-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toast {
    visibility: hidden; /* Hidden by default */
    min-width: 250px;
    background: #fff;
    color: #000;
    /* border-left: 8px solid #00294e; */
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    z-index: 1;
}

.toast.show {
    visibility: visible; /* Show the toast */
}

