.adtext{
    text-align: center;
    font-size: 2rem;
    color: rgb(255, 255, 255);
    text-shadow: 3px 3px 3px #0fad0a;
}


.content{
    display: flex;
    justify-content: center;
    align-items: center;

}

form {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-flex-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    min-height: 0;
    justify-content: center;
    align-items: center;
}

input#input-url {
    width: 80em;
    height: 3em;
    margin: 0 5vw 2vh 5vw;
    padding-left: 25px;
    border-radius: 42px;
    border: 1px solid #afb5b6;
    outline: none;
    transition: .3s linear;
    font-size: 1.2rem;
}

input#input-url:focus {
    box-shadow: 0 0 3px 3px #09e901;
}

input#input-captcha{
    width:10em;
    height: 2em;
    margin: 1vh 10px;
    padding-left: 15px;
    border: 1px solid #afb5b6;
    transition: .3s linear;
    font-size: 1rem;
}

.button-add-site {
    width: 100%;
    max-width: 100px;
    margin-top: 10px;
    font-size: 100%;
    font-weight: normal;
    line-height: 3;
    cursor: pointer;
    background-color: #0fad0a;
    border-color: #046b00;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    border-radius: .25em;
    float: right;
    user-select: none;
}


.button-add-site:hover {
    background-color: #046b00;
}



@media (max-width: 900px) {

    input#input-url {
        height: 2em;
    }



}