:root {
    --bg: #ffffff;
    --text: #000000;
    --card-bg: #f7f7f7;
    --card-border: #0099FF;
}

/* Global body reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* AD */
.ad-center {
    text-align: center;
    margin: 20px 0;
}



/* Header */
h1 {
    font-size: 20px;
    color: #1cd344;
    margin-top: 0;
    margin-bottom: 1px;
    font-weight: 700;
}

h2 {
    font-size: 18px;
    color: #1cd344;
    margin-top: 0;
    margin-bottom: 1px;
}
h3 {
    font-size: 16px;
    color: #1cd344;
    margin-top: 0;
    margin-bottom: 1px;
}
h4 {
    font-size: 16px;
    color: #0099FF;
    margin-top: 0;
    margin-bottom: 1px;
}
h5 {
    font-size: 14px;
    color: #0099FF;
    margin-top: 0;
    margin-bottom: 1px;
}
h6 {
    font-size: 18px;
    color: #0099FF;
    margin-bottom: 5px;
    font-weight: normal;
    text-align: left;
}

/* Logo block */
.logo-left {
    display: flex;
    flex-direction: column;
}

.logo {
    max-width: 180px;
    height: auto;
}

/******* SUBMIT BUTTON ******/

.submit-btn {
    padding: 10px 20px;
    font-size: 1.1em;
    background: #2a6fa8;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #1f5a82;
}

/*****  end of submit button *******/