/*!*********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./frontend/assets/css/style.css ***!
  \*********************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap);
/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./frontend/assets/css/style.css (1) ***!
  \*************************************************************************************/
/* ==================== Geral ==================== */
* {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  height: 100vh;
}

label, p, a, input, table{
  font-size: 14px;
}

.sucesso {
  line-height: 150%;
  margin: 16px 0 4px 0;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  background-color: hsl(116, 67%, 91%);
  color: hsl(118, 81%, 33%);
  width: fit-content;
  margin: 8px auto;
}

.erro {
  line-height: 150%;
  margin: 16px 0 4px 0;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  background-color: hsl(0, 67%, 91%);
  color: hsl(0, 80%, 40%);
  width: fit-content;
  margin: 8px auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-error {
  font-size: 14px;
  color: hsl(0, 80%, 40%);
}
/* ==================== Geral ==================== */



/* ==================== Navbar ==================== */
.navbar {
  height: 60px;
  background-color: hsl(0, 0%, 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
}

.navbar-agenda {
  text-decoration: none;
  color: hsl(0, 0%, 0%);
  font-size: 24px;
  font-weight: 500;
}

.navbar-entrar, .navbar-sair {
  text-decoration: none;
  color: hsl(0, 0%, 0%);
  text-align: center;
  font-size: 14px;
}

.navbar-sair {
  margin-left: 16px;
}
/* ==================== Navbar ==================== */



/* ==================== Index ==================== */
.main-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px;
  height: calc(100% - 60px); 
  width: 100%;
  box-sizing: border-box;
}

.main-index p {
  margin-bottom: 12px;
}

.index-buttons-container {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

.index-button {
  padding: 8px 16px;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  border: 1px solid transparent;
}

#index-criar-conta {
  border: 1px solid hsl(0, 0%, 10%);
  color: hsl(0, 0%, 10%);
  transition: 300ms ease-in-out;
}

#index-criar-conta:hover {
  border: 1px solid hsl(0, 0%, 15%);
  background-color: hsl(0, 0%, 15%);
  color: hsl(0, 0%, 100%);
}

#index-fazer-login {
  border: 1px solid hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 100%);
}

#index-fazer-login:hover {
  border: 1px solid hsl(0, 0%, 15%);
  background-color: hsl(0, 0%, 15%);
  color: hsl(0, 0%, 100%);
}
/* ==================== Index ==================== */



/* ==================== Login ==================== */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  height: calc(100% - 60px); 
  width: 100%;
  box-sizing: border-box;
}


h2 {
  margin: 64px 0 16px 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  width: 400px;
}

.login-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8px;
  gap: 4px;
}

.login-container input {
  border: 1px solid hsl(0, 0%, 93%);
  outline: none;
  height: 24px;
  padding: 2px 12px;
  border-radius: 4px;
  transition: 300ms ease-in-out;
}

.login-container input:focus {
  border: 1px solid hsl(0, 0%, 70%);
}

.login-button {
  height: 32px;
  background-color: hsl(0, 0%, 10%);
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 8px;
  transition: 300ms ease-in-out;
  cursor: pointer;
  margin-bottom: 8px;
} 

.login-button:hover {
  background-color: hsl(0, 0%, 15%);
}

.pergunta {
  margin: 8px 0 8px 0;
  color: hsl(0, 0%, 32%);
}

.acao {
  text-decoration: none;
  color: hsl(0, 0%, 0%);
}
/* ==================== Login ==================== */



/* ==================== Register ==================== */
.register-form {
  display: flex;
  flex-direction: column;
  width: 400px;
}

.register-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8px;
  gap: 4px;
}

.register-container input {
  border: 1px solid hsl(0, 0%, 93%);
  outline: none;
  height: 24px;
  padding: 2px 12px;
  border-radius: 4px;
  transition: 300ms ease-in-out;
}

.register-container input:focus {
  border: 1px solid hsl(0, 0%, 70%);
}

.register-button {
  height: 32px;
  background-color: hsl(0, 0%, 10%);
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 8px;
  transition: 300ms ease-in-out;
  cursor: pointer;
  margin-bottom: 8px;
} 

.register-button:hover {
  background-color: hsl(0, 0%, 15%);
}
/* ==================== Register ==================== */



/* ==================== Agenda ==================== */
.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  height: calc(100% - 60px); 
  width: 100%;
  box-sizing: border-box;
}

h1 {
  margin-bottom: 8px;
}

.agenda-subhead {
  margin-bottom: 8px;
}

table {
  width: 80vw;
  gap: 16px;
  max-width: 1200px;
  text-align: left;
  border-collapse: collapse;
  margin-top: 8px;
}

th {
  height: 40px;
  box-sizing: border-box;
  border-bottom: 1px solid hsl(0, 0%, 93%);
  padding: 8px 0;  
}

td {
  height: 40px;
  box-sizing: border-box;
  border-bottom: 1px solid hsl(0, 0%, 93%);
  padding: 8px 0;
}

.actions {
  box-sizing: border-box;
  height: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.create-contact-button {
  position: absolute;
  top: 124px;
  right: 64px;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 100%);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
}

.agenda-actions {
  color: hsl(0, 0%, 0%);
}
/* ==================== Agenda ==================== */



/* ==================== Create Contact Page ==================== */
.create-new-contact-form {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin-top: 8px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8px;
  gap: 4px;
}

.contact-container input {
  border: 1px solid hsl(0, 0%, 93%);
  outline: none;
  height: 24px;
  padding: 2px 12px;
  border-radius: 4px;
  transition: 300ms ease-in-out;
}

.contact-container input:focus {
  border: 1px solid hsl(0, 0%, 70%);
}

.create-new-contact-form input:focus {
  border: 1px solid hsl(0, 0%, 70%);
}

.create-new-contact-btns {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.create-contact-btn {
  width: 100%;
  height: 32px;
  border: none;
  border-radius: 4px;
  transition: 300ms ease-in-out;
  cursor: pointer;
}

.button-cancel {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid hsl(0, 0%, 93%);
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
  text-decoration: none;
}

.button-create {
  border: 1px solid hsl(0, 0%, 10%);
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 10%);
}

.create-subhead {
  margin-bottom: 8px;
}
/* ==================== Create Contact Page ==================== */



/* ==================== Edit Contact Page ==================== */
.edit-contact-form {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin-top: 8px;
}

/* ==================== Edit Contact Page ==================== */



/* ==================== Create Contact Modal ==================== */
.create-contact-modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px hsla(0, 0%, 0%, 0.08);
  width: 30vw;
  height: fit-content;
  box-sizing: border-box;
}

.create-contact-modal::backdrop {
  background-color: hsla(0, 0%, 0%, 0.4);
}

.modal-wrapper {
  padding: 24px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.modal-header-container {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid hsl(0, 0%, 93%);
}

.modal-header {
  margin: 0;
}

.modal-header-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-button {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}

#modal-cancel {
  background-color: white;
  color: hsl(0, 0%, 10%);
  border: 1px solid hsl(0, 0%, 93%);
}

#modal-save {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 10%);
}

.close-modal-svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid hsl(0, 0%, 93%);
  padding-left: 16px;
}

#create-contact-form {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 60px);
  box-sizing: border-box;
  padding-bottom: 12px;
}

#create-contact-form input {
  border: 1px solid hsl(0, 0%, 93%);
  outline: none;
  height: 24px;
  padding: 2px 12px;
  border-radius: 4px;
  transition: 300ms ease-in-out;
  margin: 4px 0 16px 0;
}

#create-contact-form input:focus {
  border: 1px solid hsl(0, 0%, 70%);
}
/* ==================== Create Contact Modal ==================== */



/* ==================== Delete Contact ==================== */
.delete-danger {
  padding: 16px;
  border-radius: 128px;
  background-color: hsl(0, 67%, 91%);
  color: hsl(0, 80%, 40%);
  margin-bottom: 16px;
}

.delete-header {
  margin-bottom: 24px;
}

.delete-text {
  color: hsl(0, 0%, 26%);
  text-align: center;
  line-height: 170%;
  width: 400px;
  margin-bottom: 24px;
}

.delete-contact-name {
  color: hsl(0, 0%, 0%);
  font-weight: 500;
}

.delete-page-buttons {
  display: flex;
  width: 320px;
  gap: 16px;
  justify-content: space-between;
}

.delete-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

.voltar-btn {
  border: 1px solid hsl(0, 0%, 93%);
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
}

.delete-btn {
  border: 1px solid hsl(0, 80%, 40%);
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 80%, 40%);
}
/* ==================== Delete Contact ==================== */

/*# sourceMappingURL=style.css.map*/