#image-converter {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Arial', sans-serif;
}

#image-converter h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: normal;
}

.description {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

#ic-upload-form label {
    display: block;
    background-color: #4285f4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

#ic-upload-form label:hover {
    background-color: #357ae8;
}

#ic-upload-form input[type="file"] {
    display: none;
}

#ic-upload-form button {
    display: inline-block;
    background-color: #34a853;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#ic-upload-form button:hover {
    background-color: #2c8c43;
}

#ic-result {
    margin-top: 20px;
    font-size: 1.1rem;
}

#ic-result a {
    display: inline-block;
    background-color: #34a853;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#ic-result a:hover {
    background-color: #2c8c43;
}

#ic-result p {
    font-size: 1.1rem;
    color: #f44336;  /* Cor de erro */
}

#ic-result p.success {
    color: #4caf50;  /* Cor de sucesso */
}
