body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
}

.toolbar {
    width: 100%;
    background-color: #122738;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.toolbar img {
    width: 150px;
}

.toolbar a {
    color: white;
    text-decoration: none;
    background-color: #4CAF50;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.toolbar a:hover {
    background-color: #45a049;
}

.container {
    width: 600px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #4caf50;
}

p, ul {
    margin-bottom: 20px;
}

ul {
    padding-left: 25px;
}

li {
    margin: 10px 0;
}

form {
    font-size: 18px;
    line-height: 24px;
    margin-top: 40px;
    border-top: 1px solid rgb(191 191 191 / 40%);
    padding-top: 40px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#label_accept_terms {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    font-size: 14px;
}

#label_accept_terms a{
    text-decoration: none;
}

#label_accept_terms a:hover{
    text-decoration: underline;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.footer {
    width: 100%;
    background-color: #070d1a;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

.success {
    color: green;
    font-size: 26px;
    text-align: center;
    margin-top: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    max-width: 600px;
    line-height: 50px;
}

.g-recaptcha {
    margin-bottom: 30px;
}
