
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.logo {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid rgb(219, 184, 184);
  margin: 0 auto;
}

.title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e92858;
}

.subtitle {
  font-size: 0.875rem;
  color: #851f46;
}

.btn-base {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 9999px;
  text-align: center;
  font-weight: 500;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(46, 43, 43, 0.055);
}

.btn-primary {
  background-color: #c2687b88;
  color: white;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #d74265;
}

.btn-outline-pink {
  background-color: white;
  color: #e55676;
  border: 1px solid #e55676;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.btn-outline-pink:hover {
  background-color: #ffe4eb;
}

.btn-outline-blue {
  background-color: white;
  color: #3b82f6;
  border: 1px solid #3b82f6;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  
}

.btn-outline-blue:hover {
  background-color: #42424493;
}

.btn-outline-purple {
  background-color: white;
  color: #2a1d3e;
  border: 1px solid #2a1d3e;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.btn-outline-purple:hover {
  background-color: #f2e9ff;
}

.btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
}

.btn-outline-green {
  background-color: white;
  color: #16a34a;
  border: 1px solid #16a34a;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.btn-outline-green:hover {
  background-color: #dcfce7;
}

/*==================INFO-BOX-FULL====================*/

#info-box-full{
    background: rgba(255, 255, 255, .8);
    width: 25%;
    margin: auto;
    display: block;
    margin-top: 12px;
    padding: 10px;
}

#info-box-full h3{
    text-align: center;
    color: #e92858;
}

#info-box-full p{
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/*===================FORM====================*/

input{
    width: 100%;
    height: 25px;
    margin: 12px 0;
    border: 1px solid #929292;
}

textarea{
    width: 100%;
    height: 65px;
    margin: 12px 0;
    border: 1px solid #929292;
}

.button{
    display: block;
    width: 100%;
    background-color: forestgreen;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    padding: 8px 0;
}
