@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {

    font-family: Montserrat;
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #09090b;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(76, 29, 149, 0.08) 0%, transparent 50%);
}

h3 {
    color: whitesmoke;
    gap: 5px;
    display: flex;
}

h3 span {
    color: #7c3aed;
}


p {
    color: whitesmoke;
    font-size: small;
}

a {
    color: #7c3aed;
    font-size: small;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #262626;
    background: linear-gradient(163deg, rgba(38, 38, 38, 1) 2%, rgba(23, 23, 23, 1) 65%);
    padding: 20px;
    border-radius: 20px;
    max-width: 250px;
    min-width: 250px;
}

#icon_grafico {
    background-color: #662DC6;
    padding: 8px;
    border-radius: 10px;
}

main {
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    background: rgba(9, 9, 11, 0.8);
    border: 1px solid rgba(63, 63, 70, 0.5);
    transition: all 0.3s ease;
    padding: 7px 3px;
    border-radius: 5px;
    color: whitesmoke;
    width: 100%;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
    outline: none;
}

button[type="submit"] {
    background-color: #662DC6;
    padding: 10px 3px;
    border: none;
    color: whitesmoke;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 4px;
    width: 100%;
    margin-top: 6px;
    box-shadow: #662DC6 0px 0px 4px;
    transition: 0.3s;

    font-family: Montserrat;

}

button[type="submit"]:hover {
    cursor: pointer;
    box-shadow: #662DC6 0px 0px 8px;
    transform: scale(1.02);

}

label {
    color: whitesmoke;
    align-self: start;
    font-size: 14px;
}