/*------------Reset---------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /*color*/
  --background: #E7E9EC;
  --primary: #E7E9EC;
  --secondary: #FCAD0B;
  --sucess: #1C9E02;
  --warning: #FFA006;
  --danger: #FF002B;
  --black: #000000;
  --neutrals: #c7c4c4;
  --white: #fff;
  --gradient: linear-gradient(to right top, var(--background), var(--secondary));
  --gradient-2: linear-gradient(90deg, transparent 0%, #D10023, transparent 100%);
  --text: var(--neutrals)
    /*Tipografia*/
    --ff-opensans:"Open Sans", sans-serif;

  --fs-1: 3.5rem;
  --fs--2-: 2.4rem;
  --fs-3: 2rem;
  --fs-4: 1.7rem;
  --fs-5: 1.6rem;
  --fs-6: 1.5rem;
  --fs-7: 1.4rem;
  --fs-f8: 1.2rem;

  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;

  /*espaço*/
  --section-spacing: 60px;

  /*borda*/
  --border: hsl(240, 45%, 17%);
  --border-30: hsla(267, 100%, 0.3);




  /*borda radius*/
  --radius-circle: 50%;
  --radius-5: 5px;
  --radius-3: 3px
    /*==== transição ====*/
    --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

  /*==== clip path ====*/
  --clip-path-1: polygon(0 0, 100% 0, 100% 0, 0 0);
  --clip-path-2: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --clip-path-3: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
  --clip-path-4: polygon(90% 0, 100% 40%, 100% 100%, 0 100%, 0 0);
  --clip-path-5: polygon(100% 0, 100% 100%, 10% 100%, 0 60%, 0 0);
  --clip-path-6: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
  --clip-path-7: polygon(100% 0, 100% 60%, 90% 100%, 0 100%, 0 0);
  --clip-path-8: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
  --clip-path-9: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

li {
  list-style: none;
}

a,
img,
span,
input,
button,
textarea,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
  /*herda da div pai*/
}

input,
textarea {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

address {
  font-size: 10px;
  scroll-behavior: smooth;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--gradient-2)(to right, #ffecd2, #fcb69f);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 700px;
}

.login-box {
  background-color: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--gradient-2);
  font-size: 32px;
}

form label {
  display: block;
  margin-bottom: 8px;
  color: #444;
  font-size: 18px;
  font-weight: 500;
}

form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 25px;
  border: 2px solid #fcb69f;
  border-radius: 10px;
  font-size: 17px;
  outline: none;
  transition: border-color 0.3s;
}

form input:focus {
  border-color: #e77c7c;
}

form button {
  width: 100%;
  padding: 14px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d96d6d;
}

.register {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}

.register a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
}

.register a:hover {
  text-decoration: underline;
}

/*botão topo*/

.back-side-btn {
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  position: absolute;
  padding-top: 15px;
  padding-left: 10px;
}