.upe-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.upe-form p {
    margin-bottom: 15px;
}
.upe-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #e0e0e0;
}
.upe-form input[type="text"],
.upe-form input[type="file"],
.upe-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2c2c2c;
    color: #f0f0f0;
    transition: border-color 0.3s ease;
}
.upe-form input[type="text"]:focus,
.upe-form input[type="file"]:focus,
.upe-form textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}
.upe-form img {
    display: block;
    margin-bottom: 10px;
    border-radius: 50%;
    max-width: 100%;
    border: 3px solid #333;
}
.upe-form input[type="submit"] {
    background-color: #A64D79;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s; /* Smooth transitions */
}
.upe-form input[type="submit"]:hover {
    transform: scale(1.05); /* Slight zoom effect */
    background-color: #A64D79; /* Button hover color */
}
.upe-form input[type="submit"]:focus {
    outline: none;
    
}