#video {
  border: 1px solid black;
  box-shadow: 2px 2px 3px black;
  width:640px;
  height:480px;
}

#photo {
  border: 1px solid black;
  box-shadow: 2px 2px 3px black;
  width:320px;
  height:240px;
}

#canvas {
  display:none;
}

.camera {
  width: 680px;
  display:inline-block;
}

.contentarea {
  text-align: center;
  font-size: 16px;
  font-family: "Lucida Grande", "Arial", sans-serif;
  width: 100%;
}

.buttons button {
  padding: 10px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: brown;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

#auth-section {
  max-width: 400px;
  margin: 60px auto;
  padding: 25px 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 2px 2px 3px black;
  font-family: Arial, sans-serif;
}

#auth-section h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 18px;
  color: #333;
}

#auth-section h3:first-child {
  margin-top: 0;
}

#auth-section input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#auth-section input:focus {
  outline: none;
  border-color: brown;
}

#auth-section button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: brown;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

