@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

html {
    min-height: 100%;
}

body {
    color: #505050;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 60px;
}

header {
    margin-top: 30px;
}

h1 {
    color: #f07057;
    font-size: 26px;
    margin-bottom: 30px;
}

a {
    color: #7e8998;
}

#install-app, #view-enter-code, #view-done, #view-error {
    margin-top: 100px;
}

label {
    display: block;
    font-weight: bold;
}

input[type=text] {
    width: 30%;
    min-width: 200px;
    border-radius: 2px;
    border: 1px solid #7e8998;
    font-size: 14px;
    padding: 5px 10px;
}
    input[type=text]:focus-visible {
        outline-color: #7e8998;
        border-radius: 2px;
    }

    input[type=text].input-validation-error {
        border: 1px solid #f07057;
    }

.btn-primary {
    background-color: #f07057;
    color: white;
    border-radius: 4px;
    border: none;
}

    .btn-primary:hover {
        background-color: #ed5434;
    }

.btn-secondary {
    background-color: #7e8998;
    color: white;
    border-radius: 4px;
    border: none;
}

.validation {
    color: #a31515;
}

.form-check-input:checked {
    background-color: #f07057;
    border-color: #f07057;
}

label.form-check-label {
    font-weight: normal;
    cursor: pointer;
}

.settings {
    margin-top: 20px;
}