24 lines
376 B
CSS
24 lines
376 B
CSS
body {
|
|
margin: 0;
|
|
font-family: 'Inter', sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
html {
|
|
font-size: 13px;
|
|
}
|
|
|
|
button {
|
|
font-size: 13px;
|
|
}
|
|
|
|
form {
|
|
width: 100%;
|
|
}
|
|
|
|
/* https://stackoverflow.com/questions/44543157/how-to-hide-the-google-invisible-recaptcha-badge */
|
|
.grecaptcha-badge {
|
|
visibility: hidden !important;
|
|
}
|