@import url('utils.css');
@import url('input.css');

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Prevent zoom on input focus (iOS Safari and Chrome) */
input, textarea, select, button {
    font-size: 16px !important;
}

input:focus, textarea:focus, select:focus {
    font-size: 16px !important;
    outline: none;
    box-shadow: none;
    border-color: inherit;
}
