@import url('https//fonts.googleapis.com/css2??family-Poppins:wght@400;500;700&display-swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient (to right, #e2e2e2, #c9d6ff);
    color:#333;
}

.container {
    margin: 0 15px;
    margin-left: 10px;
    margin-right: auto;
}

.form-box {
    width: 100%;
    max-width: 650px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.form-box.active {
    display: block;
}

h2{
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
}

input,
select {
    width: 100%;
    padding: 12px;
    background: #eee;
    border: 6px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 12px;
    background:#7494ec;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.5s;
}

button:hover {
    background: #6884d3;
}

p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
}

P a {
    color: #0335ff;
    text-decoration: none;
}

P a:hover {
    text-decoration: underline;
}

.error-message {
    padding: 12px;
    background: #f8d7da;
    border-radius: 6px;
    font-size: 16px;
    color: #a42834;
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 30px;
}

span {
    color: #7494ec;
}

.box p {
    font-size: 22px;
}

.box button {
    display: block;
    width: 300px;
    margin: 0 auto;
}

.form-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.form-button:hover {
    background-color: #34495e;
}

form button {
    padding: 10px 20px;
    background-color: #279E46;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background-color: #c0392b;
}

.welcome-message {
    color: green;
    font-weight: 500;
    margin: 10px 0;
    text-align: center;
    font-size: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}
        
th, td {
            border: 1px solid #ccc;
            padding: 8px 12px;
            text-align: left;
}
        
th {
            background-color: #eee;
}
        
.box {
            padding: 20px;
}

.instructions-box {
    background-color: #dce4e1;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 10px;
    font-size: 16px;
    line-height: 1.6;
    
}

.instructions-box h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.instructions-box ol {
    padding-left: 20px;
}

.instructions-box li {
    margin-bottom: 12px;
}

.partner-banner {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9f9f9;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.partner-logo {
    height: 60px;   /* adjust size */
    width: auto;
}

