#domain-checker-form {
    margin: 20px 0;
    position: relative;
}

#domain-checker-form label {
    display: block;
    margin-bottom: 10px;
}

#domain-checker-form input {
    margin-bottom: 10px;
    padding: 15px;
    width: 23.646vw;
    border-radius:1.042vw;
    background-color:#DAE9FD;
    color:#023059;
}

#domain-checker-form button {
      padding: 0.8vw 2vw;
    background-color: #41F28E;
    border: none;
    border-radius: 100px;
    color: #023059;
    font-weight: 700;
    font-family: 'Lato';
    font-size: 1vw;
}

#autocomplete-list {
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background-color: #DAE9FD;
    width: 100%;
    z-index: 1000;
    border-radius:10px;
}

.autocomplete-suggestion {
    padding: 8px;
    cursor: pointer;
}

.autocomplete-suggestion:hover {
    background-color: #f0f0f0;
}

#domain-checker-result, #database-connection-result {
    margin-top: 20px;
}

@media (max-width: 767px){
#domain-checker-form input {
width:300px !important;
height:45px !important;
border-radius:10px !important;
}
#domain-checker-form input::placeholder{
font-size:14px;
}
