/*
    Reset no CSS
*/

html {
    font-family: 'sans-serif';
    line-height: 1.4;
}

body {
    margin: 0;
    font-family: inherit;
    line-height: inherit;
}

*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}

button {
    background-color: transparent;
    background-image: none;
}

fieldset {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

hr {
    border-top-width: 1px;
}

img {
    border-style: solid;
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #a1a1aa;
}

button,
[role='button'] {
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background: transparent;
    font-family: inherit;
}

pre,
code,
kbd,
samp {
    font-family: 'sans-serif';
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
}

img,
video {
    max-width: 100%;
}

/*
    Style da página
*/

body{
    font-family: system-ui, -apple-system, Arial;
    height:100vh;
    width: 100%;
    display: flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    background: #4ac5ce;
    background: -moz-linear-gradient(45deg, #2c33ff 0%, #90e4ec 100%);
    background: -webkit-linear-gradient(45deg, #2c33ff 0%, #90e4ec 100%);
    background: linear-gradient(45deg, #2c33ff 0%, #90e4ec 100%);
}

.container-minimal{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.451);
    width:100%;
    max-width:420px;
}

h1 {
    font-size:26px;
    font-weight:600;
    margin-bottom:25px;
}

input[type="text"] {
    width: 54%;
    height: 26px;
    padding: 0 10px;
    border: 2px solid #ccc;
    border-radius: 7px;
    outline: none;
    transition: 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus {
    border-color: #0c1ec1;
    box-shadow: 0 0 8px rgba(7, 26, 172, 0.4);
}

button {
    width: 110px;            
    height: 25px;             
    font-weight: bold;
    color: white;
    background: rgb(19, 16, 196);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

label {
    font-weight:500;
    letter-spacing: 1px;
}

.resultado {
    margin-top:25px;
    font-weight:500;
}

.resultado div {
    padding:6px 0;
    border-bottom:1px solid #eee;
}

.resultado span {
    font-weight:500;
    color:#444;
    text-transform: uppercase;
}
