/* style.css */

/* Väiksed tekstiväljad - sõnumite värvimuutus */
small {
    font-size: 0.9rem;
    font-weight: bold;
}

small.text-muted {
    font-size: 0.8rem;
    color: gray;
}

small[style="color: green;"] {
    color: green;
    font-weight: normal;
}

small[style="color: red;"] {
    color: red;
    font-weight: normal;
}

/* Väli, millel on vea tekst */
input:invalid {
    border: 1px solid red;
}

input:valid {
    border: 1px solid green;
}

/* Andmete kontrollimise vormi saatmise ajal */
button[type="submit"]:disabled {
    background-color: grey;
    cursor: not-allowed;
}
