@font-face {
    font-family: 'Dosis';
    font-weight: 400;
    src: url('fonts/Dosis-Regular.ttf') format('truetype');
}

body, html {
    font-family: 'Dosis', sans-serif;
    /*overflow: hidden;*/
}

input {
    width: 75%;
    height: 30px;
    font-family:  'Dosis', sans-serif;
    font-size: 14px;
    border-width: 1px;
    border-radius: 5px;
    padding-left: 10px;
}

input:focus {
    outline: none;
    border-color: #ED6C77;
}




.dangerButton {
    background-color: #ff4444;
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: background-color 0.2s;
}

.dangerButton:hover {
    background-color: #bd3333;
}

.dangerButton:active {
    background-color: #e03c3c;
}

.dangerButton {
    cursor: pointer;
}

.dangerButton:enabled {
    opacity: 1.0;
}
.dangerButton:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}