@font-face {
    font-family: "Gotham";
    src: url("./fonts/gotham-regular.woff2") format("woff2");
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url("./fonts/gotham-bold.woff2") format("woff2");
    font-weight: 700;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: "Gotham", "Arial", sans-serif;
    background: url("./images/background-new.webp") no-repeat center bottom / cover fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


#my-form-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


#my-form-content {
    margin-left: 150px;
    padding: 30px;
    width: 390px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


#my-form-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 15px;
    color: #505050;
    padding-left: 5px;
}

.form-group input {
    background-color: #f9f9f9;
    border: 1.9px solid #ccc;
    border-radius: 10px;
    padding: 13px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group input:focus {
    border-color: #18854a;
    outline: none;
}

/* Submit Button */
#btn-submit {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: #18854a;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#btn-submit:hover {
    background-color: #126438;
}

#error-message {
    display: none;
    color: red;
    margin-bottom: 15px;
}


.country-flags {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.country-flags img {
    width: 48px;
    height: 48px;
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: #18854a;
    text-align: center;
    font-family: "Gotham", "Arial", sans-serif;
    gap: 5px;
    padding: 14px 5rem 14px 5rem;
    font-size: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
footer a {
    color: #fff;
    text-decoration: none;
    text-decoration: underline;
}
footer .footer-text a{
    font-weight: bold;
}

