body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

input[type="text"], select {
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 100%;
    font-size: 16px;
    transition: 0.3s;
}

input[type="text"]:focus, select:focus {
    border-color: #74ebd5;
    outline: none;
    box-shadow: 0 0 10px rgba(116, 235, 213, 0.5);
}

button {
    background: #74ebd5;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    font-weight: bold;
}

button:hover {
    background: #4ac4b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

a {
    color: rgb(56, 6, 131);
}

h2 {
    color: rgb(56, 6, 131);
}