body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1070ff, #d927f9);
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #010002dc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.518);
    width: 400px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.container:hover {
    transform: translateY(-5px);
}

h2 {
    margin-bottom: 20px;
    color: #cd8cff;
    letter-spacing: 1px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

label {
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
}

input[type="text"], input[type="number"] {
    padding: 10px;
    border: none;
    border-radius: 8px;
    outline: none;
    background: #3b3b4f;
    color: #fff;
    font-size: 14px;
    transition: box-shadow 0.2s;
}

input:focus {
    box-shadow: 0 0 5px #6c63ff;
}

button {
    padding: 12px;
    background: #8100b4;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background:  #c226ff;
}

a {
    display: inline-block;
    margin-top: 15px;
    color: #ef97ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
