/* alterado em: 16/08/23 - Jefferson Lima */

 /* Reset CSS */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Body */
    body {
     /* background-color: #f4f4f4; */
      font-family: Arial, sans-serif;
    }

    /* Header */
    header {
      background-color: #8257e5;
      color: #fff;
      padding: 10px 0;
      text-align: center;
    }

    /* Content */
    .content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      background-color: #ffffff;
      border-radius: 10px; 
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    }

    /* Textareas */
    textarea {
      resize: vertical;
      border: 1px solid #ccc;
      padding: 8px;
      background-color: #f9f9f9;
      color: #333;
      font-size: 18px;
      line-height: 1.4;
      width: 100%;
      max-width: 100%;
      font-family: inherit;
    }

    textarea:focus {
      border-color: #8257e5;
    }

    /* Buttons */
    .button-container {
      display: flex;
      gap: 10px;
      width: 100%;
      justify-content: center;
    }

    button {
      background-color: #000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 150px;
      text-align: center;
    }

    button:hover {
      background-color: #333;
    }
	
	input[type="file"] {
	  font-size: 16px;
	  background-color: #000;
      color: #fff;
	  font-size: 
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
	}

	label{
	  color: black;
	  position: relative;
	  font-size: 18px;
	}
	
	#legenda {
	  color: black;
	  position: relative;
	  font-size: 22px;
	  font-weight: bold;
	}
	

    /* Footer */
    footer {
      background-color: #f4f4f4;
      color: #888;
      padding: 10px 0;
      text-align: center;
      border-top: 1px solid #ddd;
    }


    /* Screen reader only */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .content {
        width: 95%;
      }

      .button-container {
        flex-direction: column;
        align-items: center;
      }
    }