/* Reset básico */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}




/* Página */
body {


    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    background-color: #c37aff;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;


    padding: 20px;

}


/* Caixa principal */

.container {

    width: 92%;

    max-width: 420px;

    background-color: rgba(144, 36, 194, 0.355);

    padding: 35px 30px;

    border-radius: 18px;

    text-align: center;

    box-shadow:0 4px 12px rgb(129, 22, 141);

}


/* Título */

h1{

    font-family: "Allura", cursive;

    margin-bottom: 35px;

    color: #f9f6f6;

    font-size: 60px;

}


/* Formulário */

form {

    width: 100%;

}


/* Texto */

label {

    display: block;

    text-align: center;

    margin-bottom: 12px;

    color: #fdfbfb;

    font-weight: bold;

    font-size: 18px;

}


/* Campo */

input {

    width: 100%;

    height: 60px;

    padding: 15px;

    border-radius: 10px;

    border: 1px solid #ccc;

    font-size: 20px;

    text-transform: uppercase;

    margin-bottom: 25px;

}


input:focus {

    outline: none;

    border-color: #b702fe;

}


/* Botão */

button {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 10px;

     background-color:#810dcf;

    color: white;

    font-size: 20px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

    font-family: Georgia;

}


button:hover {

    background-color:#b51fcf;

}


