input[type = number]::-webkit-inner-spin-button,
input[type = number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #c95028, #cc9922);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

div {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 300px;
}

h1 {
    margin-bottom: 15px;
    font-size: 22px;
}

label {
    font-size: 16px;
}

input {
    width: 80%;
    padding: 8px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #4CA1AF;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #5c3694;
}

p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}
