:root {
  --color-brand-black-rgb: 0, 0, 0;
  --color-brand-yellow-rgb: 204, 239, 61;
  --color-brand-blue-rgb: 2, 50, 160;
  --color-brand-orange-rgb: 247, 90, 27;
  --color-brand-offwhite-rgb: 252,  247, 242;
}

* {
  direction: rtl;
  box-sizing: border-box;
  outline: none;
  font-family: 'Cairo', 'Poppins', sans-serif;

  -webkit-appearance:     none;
  -moz-appearance:        none;
  -ms-appearance:         none;
  -o-appearance:          none;
  appearance:             none;
}

body {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin: 0;
  background: #ffffff;

  margin-top: 80px;

  background: rgba(var(--color-brand-offwhite-rgb), 1);
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
  /* height: 100%; */
}

.container {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 0 auto;

  width: 100%;
  max-width: 900px;

  padding: 0 20px;
}


/* Section. */
.section {
  position: relative;
  display: flex;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: column;

  width: 100%;

  padding: 40px 20px;
}


/* Form. */
.cform {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.cform-inputgroup {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.cform-inputgroup-title {
  position: relative;

  font-size: 18px;
  font-weight: 500;
}

.cform-input {
  position: relative;
  display: flex;

  appearance: none;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;

  width: 100%;

  padding: 10px 0;

  border-bottom: 2px solid rgba(0, 0, 0, 0.2);

  font-size: 16px;

  background: transparent;
  transition: 0.3s all ease-out;
}
textarea.cform-input {
  resize: vertical;
}
.cform-input:focus {
  border-color: rgba(0, 0, 0, 0.6);
}

.cform-inputgroup-error {
  position: relative;

  font-size: 14px;

  color: rgba(200, 50, 50, 1);
}

.cform-button {
  position: relative;
  display: flex;
  gap: 5px;

  appearance: none;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin: 10px 0;

  width: 100%;
  height: 50px;

  padding: 0 20px;

  font-size: 14px;
  font-weight: 600;

  color: rgba(var(--color-brand-blue-rgb), 1);
  background: rgba(var(--color-brand-yellow-rgb), 1);
}

.cform-inputgroup-row {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
}
.cform-inputgroup-row > .cform-inputgroup {
  position: relative;
  display: flex;

  width: 100%;
  max-width: calc(50% - 5px);
}































/*  */
