body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #e6f2ff;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .login-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 120px;
  }
  
  h1 {
    text-align: center;
    color: #004080;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    font-weight: bold;
    color: #003366;
    display: block;
    margin-bottom: 5px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
  }
  
  .atividades-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .atividade-item {
    display: flex;
    flex-direction: column;
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 1rem;
    background-color: #fff;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    box-sizing: border-box;
    height: 100%;
    text-align: center;
  }
  
  .atividade-item:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
  }
  
  .atividade-item input[type="checkbox"] {
    margin-bottom: 0.6rem;
    transform: scale(1.3);
    accent-color: #007bff;
    cursor: pointer;
    align-self: flex-start;
  }
  
  .atividade-item .vagas {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: green;
    font-weight: normal;
    display: inline-block;
  }
  
  .atividade-item input[type="checkbox"]:checked ~ span {
    font-weight: bold;
    color: #003366;
  }
  
  
  .btn-submit {
    background-color: #0074c2;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-submit:hover {
    background-color: #004080;
  }
  
  .form-footer {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #666;
  }
  
  /* #artesanato2{
    display: none;
  } */
