*{
  margin: 0px;  
  padding: 0px;
  text-decoration: none;
  outline: none;
}

body {
    background: #020024;

background: linear-gradient(180deg, #020024 50%, #1d1556 100%);

background: -moz-linear-gradient(180deg, #020024 50%, #1d1556 100%);

background: -webkit-linear-gradient(180deg, #020024 50%, #1d1556 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#020024", endColorstr="#1C1554", GradientType=1 );

    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 600px; 
    height: 400px;  
    padding: 10px;
    border-radius: 5px;
    background-color: #f1e0c5;
    box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.511);
}

.container h1 {
    font-family: roboto, arial, sans-serif;
    font-size: 35px;
    margin: 30px;
    text-align: center;
}

.container p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;;
    text-indent: 14px;
    font-weight: 700;
    margin: 5px;
    color: #151515;
}

form {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 400px;
    flex-grow: 1px;
    gap: 5px;
}

.input, .button {
    padding: 8px;
    outline: none;
    border: 1px solid #535353;
    border-radius: 4px;
    font-weight: 600;
}

.button {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #020024;
    color: #f5f5f5;
    cursor: pointer;
}

.input {
    font-size: 18px;
    text-align: center;
}

.button:hover {
    background-color: #565b71;
    color: #fefefe;
};

.resultCPF {
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 600px) {

    .container {
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .container h1 {
        font-size: 27px;
    }

    .container p, .input {
        font-size: 16px;
    }

    form {
        width: 350px;
    }

}

