* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    background: #FCB6A2;
    background: linear-gradient(0deg, rgba(252, 182, 162, 1) 0%, rgba(254, 104, 125, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playwrite AU QLD", cursive !important;
    height: 100vh;
}

.box {
    height: 660px;
    width: 600px;
    margin: 160px;
    padding: 50px;
    background: #FF9B86 !important;
    background: linear-gradient(0deg, rgba(255, 155, 134, 1) 0%, rgba(255, 68, 93, 1) 100%) !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-left: -10px;
}