body {
    background-image: url('../assets/images/backgrd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 50px;

    /* transparent blue background */
    color: white;
}

.form-section {
    flex: 1;
    max-width: 40%;
}

h2 {
    color: #00A14D;
    font-size: 30px;
    margin-bottom: 10px;
}

h3 {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.input-group button {
    width: 100%;
    padding: 12px;
    background-color: #00A14D;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.input-group button:hover {
    background-color: #008d3e;
}

.input-group a {
    color: #00A14D;
    text-decoration: none;
    font-size: 14px;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-section img {
    width: 80%;
    max-width: 400px;
    border-radius: 20px;
}

.footer {
    background-color: white;
    color: #001f4d;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
