* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(8, 0, 32);
    color: rgb(197, 196, 214);
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    box-sizing: border-box;
    gap: 10px;
    text-align: center;
}

p:last-of-type {
    margin-bottom: 30px;
}

input {
    background: none;
    border: none;
    border-bottom: 1px solid rgb(197, 196, 214);
    outline: none;
    color: rgb(197, 196, 214);
    font-weight: bold;
    width: 50%;
    text-align: center;
    margin-bottom: 30px;
    height: 30px;
    font-size: 20px;
}

.box {
    gap: 10px;
    padding: 10px;
    width: 60%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(24, 11, 63);
    border-radius: 30px;
}
span {
    font-weight: bold;
}
button {
    outline: none;
    background-color: rgb(45, 24, 111);
    border: none;
    width: 120px;
    height: 30px;
    color: rgb(197, 196, 214);
    border-radius: 5px;
    transition: background-color 0.2s, transform 0.1s;
    cursor: pointer;
}
button:hover {
    background-color: rgb(58, 36, 132);
}
button:active {
    transform: scale(0.9);
}
img {
    border-radius: 30px;
    width: 200px;
}