@import url('https://fonts.googleapis.com/css2?family=Sora&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: #181818;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Sora', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

h2 {
    background: linear-gradient(90deg, #3BC4E2 25.68%, #A2EEFF 78.04%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    font-weight: 600;
    margin-block: 50px;
}

label {
    color: #ECECEC;
    text-indent: 25px;
    padding: 6px;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
}

input {
    background-color: #1C1C1C;
    border-radius: 4px;
    border: none;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    text-indent: 15px;
    padding: 15px 10px;
    font-size: 15px;
    color: #ECECEC;
}

input::placeholder {
    color: #ECECEC;
    opacity: 80%;
}

.btn {
    background: linear-gradient(90deg, #3BC4E2 0%, #404040 100%);
    border-radius: 12px 4px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: .5s;
    letter-spacing: 1px;
}
.btn:hover {
    letter-spacing: 2px;
}

small {
    color: #3BC4E2;
    background-color: #1C1C1C;
    padding: 15px;
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
}
small span {
    color: #A2EEFF;
}
small span:hover {
    color: #3BC4E2;
}
small a {
    text-decoration: none;
}

#resultado {
    color: #ECECEC;
    margin: 10px;
}