html,
body {
    height: 100%;
}

body {
    min-width: 320px;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

a {
    color: var(--text-color);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/image/flag-ro.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.container {
    width: 75%;
}

.main {
    margin-top: 50px;
    padding: 75px 25px;
    color: #1a1a1a;
    font-weight: 700;

    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.image-anc {
    width: 300px;
    margin-bottom: 25px;

}

@media (max-width: 767px) {
    .container {
        width: 90%;
    }

    .form-control {
        margin-bottom: 10px;
    }
}