:root {
  --primary: #2c71ac;
  --light: #f1f8ff;
  --blur-light: #adadad;
  --dark: #0f172b;
  --bg-image-agua1: url(./../img/agua-fundo2.jpg);
  --bg-transp: rgba(15, 23, 43, 0.522);
  --fixed-height: 100vh;
  --error-msg: #fd9494;
  --error-text: rgb(139, 6, 6);
  --success-msg: #94fdba;
  --success-text: rgb(6, 139, 26);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}
body {
  background-image: var(--bg-image-agua1);
  background-size: cover;
  background-repeat: no-repeat;
  height: var(--fixed-height);
  font-family: "Montserrat";
}
.content-start {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px;
  border: none;
  box-shadow: 0px 0px 30px 0px var(--blur-light);
  border-radius: 10px;
  cursor: pointer;
}
.btn-start {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  background-color: var(--dark);
  color: var(--light);
  font-size: 20pt;
  font-weight: 700;
}
.btn-submit {
  background-color: var(--primary);
  color: var(--light);
}
.login-group {
  margin: auto;
  background-color: var(--bg-transp);
}
.form-group {
  max-width: 375px;
  padding: 15px;
  background: var(--light);
}
.title-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
.title-group img {
  width: 70px;
}
.title-group h1 {
  width: max-content;
  font-weight: 900;
  font-size: 28pt;
}
form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
form .row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
input,
select {
  padding: 10px;
  font-size: 14pt;
  border: 1px var(--blur-light) solid;
  border-radius: 8px;
}
#error {
    display: none;
  background-color: var(--error-msg);
  color: var(--error-text);
  padding: 10px;
  border-radius: 8px;
}
#response {
    display: none;
  background-color: var(--success-msg);
  color: var(--success-text);
  padding: 10px;
  border-radius: 8px;
}
