﻿@font-face {
    font-family: "vazir";
    src: url("../fonts/vazir.eot") format("eot"), url("../fonts/vazir.ttf") format("truetype"), url("../fonts/vazir.woff") format("woff"), url("../fonts/vazir.woff2") format("woff2");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "vazir";
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(#4671ea, #ac34e7);
}

.wrapper {
    width: 470px;
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 25px 25px 30px;
}

.wrapper h2 {
    color: #4671ea;
    font-size: 28px;
    text-align: center;
}

.wrapper textarea {
    width: 100%;
    height: 60px;
    padding: 15px;
    outline: none;
    resize: none;
    font-family: "vazir";
    font-size: 16px;
    margin-top: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-color: #bfbfbf;
}

textarea:focus {
    border-color: #4671ea;
}

textarea::-webkit-scrollbar {
    width: 0;
}
