h1 {
    background: linear-gradient(to right, #00bfff, #66ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

form {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    margin: 30px auto;
    text-align: left;
}

label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.gender {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.gender label {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 14px;
}

.gender input {
    width: auto;
    margin-right: 5px;
}

.file-upload {
    margin-top: 10px;
}

.file-upload input[type="file"] {
    color: white;
}

button {
    background: #00bfff;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background: #009acd;
}

.back-link {
    margin-top: 20px;
    display: inline-block;
}

#fileName {
    font-size: 13px;
    color: #ccc;
    margin-top: 5px;
    word-wrap: break-word;
}