@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins";
}

input {
  caret-color: red;
}

body {
  margin: 0;
  width: 100vw;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  place-items: center;
  overflow-x: hidden;
  font-family: poppins;
}
form.fom-cad label {
    display: flex;
}
a.criar-conta {
    display: flex;
    width: 100%;
}
.container.login {
    margin-top: 15vh;
}
.container.cad {
    margin: 30px 0px;
}
select#ramo_atividade {
    margin-bottom: 5px;
    border: none !important;
    padding: 10px 10px;
    width: 100%;
    background: #ecf0f3;
    border-radius: 25px;
    box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}
.error {
    background-color: #ffdddd;
    color: red;
    border-radius: 10px;
    padding: 15px;
}
form.fom-cad {
    text-align: left;
}
.cta-login{
  cursor: pointer;
}
.container {
  position: relative;
  width: 350px;
  border-radius: 20px;
  padding: 25px;
  box-sizing: border-box;
  background: #f7f7f7;
  box-shadow: 14px 14px 20px #cbced1, -14px -14px 20px white;
}
.brand-logo img {
    max-width: 100%;
    /* border-radius: 50%; */
}
.brand-logo {
  /* height: 200px; */
  /* width: 200px; */
  /* margin: auto; */
  border-radius: 0%;
  /* box-sizing: border-box; */
  /* box-shadow: 7px 7px 10px #cbced1, -7px -7px 10px white; */
}

.brand-title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.8rem;
  color: #1DA1F2;
  letter-spacing: 1px;
}

.inputs {
  text-align: left;
  margin-top: 30px;
}

label, input, button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

label {
  margin-bottom: 4px;
}

label:nth-of-type(2) {
  margin-top: 12px;
}

input::placeholder {
  color: gray;
}

input {
  background: #ecf0f3;
  padding: 10px;
  padding-left: 20px;
  height: 50px;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

button {
  color: white;
  margin-top: 20px;
  background: #1DA1F2;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 6px 6px 6px #cbced1, -6px -6px 6px white;
  transition: 0.5s;
}

button:hover {
  box-shadow: none;
}
a.criar-conta {
    color: #6b67d6;
    text-decoration: none;
    float: right;
    margin-top: 10px;

}
.left-text{
  justify-content: flex-end;
}

h1 {
  position: absolute;
  top: 0;
  left: 0;
}
input.cta-login,.cta-cad {
    background-color: #6b66db;
    box-shadow: none;
    color: white;
    cursor: pointer;
}