* {
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
}

body {
    background: linear-gradient(-45deg, #421BAE, #8F6FF1, #65B2FF, #1C84FB);
    display: flex;
    justify-content: center;
    margin: 72px 0 0 0;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.container-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    gap: 10px;
}

.container-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    background: linear-gradient(45deg, #8F6FF1, #65B2FF);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

label, input, select {
    display: block;
    height: auto;
    width: 100%;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #513e86, #00456f);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
     
input[type="number"], select {
    padding: 10px 0px;
    padding-left: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

.result {
    margin-top: 20px;
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}