* {
     box-sizing: border-box;
     margin: 0px;
     padding: 0px;
     font-family: "Press Start 2P", serif;
     user-select: none;
     font-size: 13px;
}

body {
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
     background-color: rgb(22, 4, 65);
}

form {
     border: 7px solid rgb(255, 145, 0);
     box-shadow: 0 0 40px rgba(217, 255, 0, 0.438);
     background-color: white;
     padding: 30px;
     width: 100%;
     max-width: 320px;
     border-radius: 40px;
     display: flex;
     flex-direction: column;
     gap: 30px;
}

form > a {
     text-align: center;
     font-size: 11px;
}

h1 {
     text-align: center;
     font-size: 16px;
     margin-bottom: 10px;
     color: rgb(60, 2, 114);   
}

label {
     font-weight: bold;
}

input {
     width: 100%;
     padding: 8px;
     border: 1px solid #ccc;
     border-radius: 5px;
}

input[type="text"], input[type="password"] {
     color: #7157e4;
     box-shadow: 0 0 10px rgb(116, 116, 116);
}

input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus {
     box-shadow: 0 0 10px blueviolet;
}

input[type="button"]:hover{
     border: 1px solid blueviolet;
}

input[type="button"]{
     box-shadow: 0 0 0px 0;
     background-color: rgb(255, 145, 0);
     color: white;
}

input[type="button"]:active {
     box-shadow: 0 0 0px 0;
     background-color: blueviolet;
     color: white;
}