@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');


* {

    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Montserrat';
    box-sizing: border-box;

}

body {
    min-height: 100vh;
    background-color: aliceblue;

}

h1,
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0056b3;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.logo {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 100%;
}

.section {
    margin-bottom: 30px;
    text-align: justify;
}

.section-signature {
    text-align: center;
}

.section h3 {
    margin-bottom: 10px;
    color: #0056b3;
}

.section p {
    line-height: 1.6;
    text-align: justify;
    margin-top: 10px;
}

.section .equipments {
    background: #87acd4;
    margin-top: 10px;
    padding: 8px;
    border-radius: 10px;
}

.section .equipments .equipment-item {
    display: flex;
    flex-direction: row;
    padding-top: 7px;
    padding-bottom: 7px;
}

.section .equipments .equipment-item label {
    padding: 10px;
}

#signature-pad {
    border: 2px dashed #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 20px auto;
}

.buttons {
    text-align: center;
    margin-top: 10px;
}


@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    h1,
    h2 {
        font-size: 1.5em;
    }

    .section h3 {
        font-size: 1.2em;
    }

}