*{
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    outline: 0;
}
body{
    background-color: rebeccapurple;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
h1{
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    text-shadow: -1px -1px 0 rgb(98, 0, 101), 1px -1px 0 rgb(98, 0, 101), -1px 1px 0 rgb(98, 0, 101), 1px 1px 0 rgb(98, 0, 101);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h2{
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
margin-right: 2rem;
}
.pass{
    width: 480px;
    height: 86px;
    pointer-events: none;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgb(0, 0, 0);
    text-align: center;
}
input::placeholder{
    color: rgba(79, 8, 73, 0.241);
}
button{
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    margin-bottom: 1rem;
}
button:hover{
    background-color: blueviolet;
    color: white;
    box-shadow: 0px 0px 10px black;
    scale: 1.2;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.num{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-left: 1rem;
    border: 2px solid rgb(163, 3, 104);
}
.num::placeholder{
    font-size: 2rem;
    text-align: center;

}
.small-placeholder{
    font-size: 1.6rem;
    text-align: center;
    color: rgba(255, 0, 0, 0.306);
}