/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-image: url("./assets/abstract-background-bokeh-circle-light-blue-abstract-blue-effect-background-light-blue-abstract-background-free-photo.jpg");
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 5px;
}

/* Logo */
.logo {
  width: 210px;
  margin-top: 10px;
}

/* Títulos */
.texto {
  font-size: 75px;
  margin-top: 15px;
  color: #222;
  text-align: center;
}

.texto2 {
  font-size: 35px;
  margin: 20px 0;
  color: #666;
  text-align: center;
}

/* Inputs */
.container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.input-box,
.input-box2 {
  padding: 12px 20px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  width: 285px;
  max-width: 100%;
  text-align: center;
}

/* Botão */
button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

button:hover {
  background-color: #0056b3;
}

/* Resultado */
.resultado {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.2rem;
  width: 90%;
  max-width: 400px;
}

.relogios {
  font-weight: 500;
  color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo {
      width: 150px;
        margin-top: 170px;
    }
  .texto {
    font-size: 2rem;
  }

  .texto2 {
    font-size: 1.3rem;
  }

  .input-box,
  .input-box2 {
    width: 100px;
    font-size: 0.95rem;
  }

  button {
    padding: 12px 24px;
    font-size: 1rem;
  }

  
}



