body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.logo {
    max-width: 280px;
    margin-bottom: 15px;
}

h2 {
    margin: 10px 0 25px;
    color: #333;
    font-weight: 600;
}

#mensagemContainer .mensagem {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

#mensagemContainer .sucesso {
    background-color: #dcfce7;
    border: 1px solid #16a34a;
    color: #166534;
}

#mensagemContainer .erro {
    background-color: #fee2e2;
    border: 1px solid #dc2626;
    color: #991b1b;
}

#linkGerado {
    width: calc(100% - 90px);
    padding: 8px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.btn-copiar {
    width: 75px;
    padding: 8px;
    border: none;
    background-color: #555;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-copiar:hover {
    background-color: #333;
}

#copiado {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

form input[type="file"],
form select,
form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box; /* Garante que padding não afete a largura total */
}

form button {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.allowed-types {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

form button:hover {
    background-color: #111;
}

.progress-container {
    width: 100%;
    background-color: #e9ecef;
    border-radius: 10px;
    margin-top: 15px;
    display: none;
    overflow: hidden; /* Garante que a barra não passe da borda */
}

.progress-bar {
    height: 20px;
    width: 0%;
    background-color: #333;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 20px; /* Centraliza o texto verticalmente */
    transition: width 0.4s ease;
}