:root {
  --bs-body-font-family: Roboto, sans-serif;
  --ecr-primary: #904d9a !important;
  --ecr-red: #ff4040 !important;
  --ecr-tertiary: #ff6600;
  --ecr-gold: #ebb54c;
  --ecr-gold-bold: #c99361;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #575756;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #575756;
  background-color: white;
}

header.bck-link-tree {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

.profile img {
  border-radius: 15%;
}

.profile h1 {
  margin: 0 0 -5px 0;
}
.profile p {
  margin: 0;
}
.content {
  flex: 1;
  padding: 40px;
  flex-direction: column;
  font-family: var(--bs-body-font-family);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 0;
  width: 100vw;
}

.bta-cta {
  background-color: white !important;
  color: #575756;
  border: solid rgba(87, 87, 86, 0.15);
  padding: 10px 20px;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.bta-cta:hover {
  background: #7a629d !important;
  color: white;
  border: solid rgba(121, 97, 156, 0.15);

}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background: #454f93 !important;
  color: white;
}

/* background-color: white !important;
  color: white;
  border: solid rgba(87, 87, 86, 0.15);
*/

button:active {
  box-shadow: inset 0 0 15px #6a5acd;
}

@media (max-width: 600px) {
  .profile {
    flex-direction: column;
    margin: 0 20px;
  }

  .content {
    padding: 0 25px;
  }

  .form-cta {
    margin-bottom: 10%;
  }
}
