* {
    margin: 0;
    padding: 0;
    color: white;
}

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


fieldset {
    border: 2px solid rgb(13, 13, 59);
    border-radius: 12px;
    box-shadow: -2px 2px 10px rgb(18, 30, 94);
    padding: 20px;
    width: 80%;
    background-color: rgb(13, 13, 59);
}

form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transition: 2s;
}

input {
    flex-basis: 280px;
    background-color: #0000aaff;
    border: none;
    outline: none;
    padding: 5px 10px;
    font-size: 18px;
    font-family: cursive;
    transition: 1s;
    flex-grow: 1;
    box-shadow: -2px 2px 5px rgba(255, 255, 0, 0.377);
}


input:focus {
    transform: scale(0.91);
    transition: 2s;
}
input:hover {
    transform: scale(0.91);
}


button {
    box-shadow: -2px 2px 5px rgba(255, 255, 0, 0.377);
cursor: pointer;
color: whitesmoke;
background-color: #14a;
border: none;
padding: 10px 15px;
flex-basis: 30px;
flex-grow: 1;
border-radius: 12px;
}

button:hover{
    transition: 1s;
    transform: scale(1.09);
}