* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #E5E5E5;
}

a {
    text-decoration: none;
    color: rgb(0, 106, 255);
}

.container {
    background-color: #E5E5E5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    width: 100%;

}

input {
    width: 100%;
    height: 32px;
    border-radius: 5px;
    border: 1px solid;
}

.sign {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px rgb(157, 158, 158);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sign label {
    padding-top: 15px;
}

#signature {
    border-top: 1px solid #000;
    background-color: #ffffff;
}

.btn {
    width: 100%;

    padding: 0px 10px;
    display: flex;
    gap: 10px;
    font-size: 32px;
    margin-bottom: 10px;
}

#downloadButton {
    width: 70%;
    font-size: 18px;
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    border: none;

}

#clearButton {
    width: 30%;
    font-size: 18px;
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    border: none;

}

.check input {
    width: auto;
}

.cb {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;

}

.submitlast {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submitlast input {
    width: 50%;
    border: none;
    padding: 5px;
    font-size: 18px;
    color: white;
}

button {
    background-color: #54489F;
}


@media (min-width: 800px) {
    body{
        display: none;
    }
}
