*{
    margin: 0;
    padding: 0;
}
:root {
 --text-50: #f0eef6;
--text-100: #e0deed;
--text-200: #c2bddb;
--text-300: #a39cc9;
--text-400: #857ab8;
--text-500: #6659a6;
--text-600: #524785;
--text-700: #3d3663;
--text-800: #292442;
--text-900: #141221;
--text-950: #0a0911;

--bg: #f4f3f9;
--background-50: #efeef6;
--background-100: #e0ddee;
--background-200: #c1bbdd;
--background-300: #a299cc;
--background-400: #8377bb;
--background-500: #6355aa;
--background-600: #504488;
--background-700: #3c3366;
--background-800: #282244;
--background-900: #141122;
--background-950: #0a0911;

--primary-50: #f2f2f2;
--primary-100: #e6e6e6;
--primary-200: #cccccc;
--primary-300: #b3b3b3;
--primary-400: #999999;
--primary-500: #808080;
--primary-600: #666666;
--primary-700: #4d4d4d;
--primary-800: #333333;
--primary-900: #1a1a1a;
--primary-950: #0d0d0d;

--secondary-50: #f2f2f2;
--secondary-100: #e6e6e6;
--secondary-200: #cccccc;
--secondary-300: #b3b3b3;
--secondary-400: #999999;
--secondary-500: #808080;
--secondary-600: #666666;
--secondary-700: #4d4d4d;
--secondary-800: #333333;
--secondary-900: #1a1a1a;
--secondary-950: #0d0d0d;

--accent-50: #f0f0f5;
--accent-100: #e0e0eb;
--accent-200: #c2c2d6;
--accent-300: #a3a3c2;
--accent-400: #8585ad;
--accent-500: #666699;
--accent-600: #52527a;
--accent-700: #3d3d5c;
--accent-800: #29293d;
--accent-900: #14141f;
--accent-950: #0a0a0f;
--text: #08070d;
--background: #f4f3f9;
--primary: #333333;
--secondary: #222222;
--accent: #020203;
--font-scale: 1.333;
    --p: 1rem;
    --h5: calc(var(--p) * var(--font-scale));
    --h4: calc(var(--h5) * var(--font-scale));
    --h3: calc(var(--h4) * var(--font-scale));
    --h2: calc(var(--h3) * var(--font-scale));
    --h1: calc(var(--h2) * var(--font-scale));
    --small: calc(var(--p) / var(--font-scale));
    --margin-lg: 0 12%;
    --margin-md: 0 6%;
    --border1: 1rem;
    --border05: 0.5rem;


}
body {
  background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
     font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.maindiv {
  background: var(--secondary);
  color: #fff;
  border-radius: .4em;
  padding: 2em;
  height: 80vh;
  width: 30vw;
  overflow: scroll;
  position: relative;
}
.maindiv p {
  margin-bottom: 2em;
}
.maindiv::scroll-bar {
  display: none;
}
label[for=imageInput]{
  background: var(--primary);
  width: 100%;
  height: 10em;
  border-radius: .4em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 1em;
  line-height: 2em;
  cursor: pointer;
}
button {
    border: none;
    background: var(--background-100);
    border-radius: .3em;
    height: 3em;
    width: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text)
}
input[type=text], input[type=number]{
    border: 1px solid #999;
    border-radius: .4em;
    height: 2.5em;
    margin-bottom: .7em;
    width: 99%;
    padding: .5em;
    color: #fff;
    background: transparent;
}
textarea{
    border: 1px solid #999;
    border-radius: .4em;
    height: 8em;
    margin-bottom: .7em;
    width: 99%;
    padding: .5em;
    color: #fff;
    background: transparent;
}
input:focus {
  border: 1px solid var(--bg);
  outline: none;
}
.aestheric::after {
  content: '*';
  color: var(--auburn);
}
button {
  position: absolute;
  right: 1em;
    cursor: pointer;
}
input::file-selector-button {
    font-weight: bold;
    color: #fff;
    background: #5845ff;
    padding: 0.5em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
input[type=file]{
  display: none;
}


#imagePreviewContainer img {
    height: 10em;
    border-radius: 0.4em;
    margin-block: 2em;
    margin-right: 0.5em;
}


@media screen and (max-width: 767px) {
  .maindiv {
    height: 100vh;
    width: 100vw;
  }
  
}