@import url("header.css");
@import url("spinner.css");

:root {
  --primary-color: #3c91e6;
  --primary-color-400: #62bafd;
  --primary-color-100: #e9f2fc;
  --primary-text-color: #2d2d2d;
}

body {
  margin: 0;
  height: 100dvh;
  background: var(--primary-color-100);
  font-family: "Poppins" !important;
  font-size: 10px;
  overflow: hidden;
}

.container {
  width: calc(100% - 60px);
  justify-content: space-evenly;
  align-items: center;
  height: calc(100vh - 95px);
  overflow: auto;
  padding: 0 30px;
}

.container-body {
  justify-content: center;
  align-items: center;
}

/* text formatting */

.header-text-1 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.header-text-2 {
  color: #545454;
  font-size: 18px;
  font-weight: bold;
}

.description-text-1 {
  color: #545454;
  font-size: 18px;
  font-weight: 300;
}

.description-text-2 {
  color: #2d2d2d;
  font-size: 14px;
}

textarea {
  height: 240px;
  width: calc(100% - 20px);
  padding: 20px 10px;
  font-size: 12px;
  border: 1px solid #b1bfd0;
  border-radius: 9px;
  background-color: #f9f9f9;
}

.paper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: fit-content;
  padding: 20px;
  gap: 32px;
  background-color: #fff;
  border-radius: 10px;
}

button {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  color: #fff;
  background-color: var(--primary-color-400);
  padding: 10px 60px;
  font-family: "Poppins" !important;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  width: 100%;
}

footer {
  text-align: center;
  padding: 10px 30px;
  margin: 30px 0;
}

.radio-buttons {
  justify-content: center;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
}

.flex-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 30px;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.center-align {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.left-align {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
