body {
    font-family: 'Roboto', sans-serif;
    font-size: 14pt;
    color: #e0e0e0;
    background: linear-gradient(to bottom right, #1a2a41, #0d0d0d);
    margin: 0;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    color: #f1f1f1;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

hr {
    border: none;
    border-top: 2px solid #e69a28;
    width: 60%;
    margin: 10px auto 30px auto;
}

p {
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: #dcdcdc;
    text-align: center;
}

form {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

fieldset {
    border: 2px solid #e69a28;
    border-radius: 8px;
    padding: 20px;
}

legend {
    color: #e69a28;
    font-weight: bold;
    padding: 0 10px;
}

label {
    display: inline-block;
    width: 120px;
    color: #f1f1f1;
    font-weight: 500;
}

input[type="file"] {
    padding: 5px;
    border-radius: 4px;
    border: none;
    background: #232323;
    color: #e0e0e0;
    width: 60%;
}

input[type="submit"] {
    background: #e69a28;
    border: none;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

input[type="submit"]:hover {
    background: #ffb84d;
    transform: scale(1.05);
}

.btn {
    background: #e69a28;
    border: none;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    margin-left: 15px;
}

.btn:hover {
    background: #ffb84d;
    transform: scale(1.05);
}

fieldset p {
    margin: 15px 0;
}
