@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(../assets/images/background-movies-series.png);
  background-size: cover;
  height: 100vh;
}

.header {
    position: relative;
}

p {
    
    text-align: left;
}

.main-content {
    display: flex;
    flex-direction: column;
    font-family: "Quicksand", cursive;
    width: 100%;
    height: 70%;
    padding: 24px;
}

.formulario {
   display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: var(--form-bg-color);
    border-radius: 50px;
    width: 100%;
    max-width: 800px;
    gap: 24px;
}



label, input {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
}

.btn {
    margin-top: 24px;
    text-align: left;
    gap: 24px;
}

.lembrar-senha {
    color: var(--link-color);
    text-decoration: none;
    margin-left: 24px;
    font-weight: bold;
    transition: color 1.5s;
}

.lembrar-senha:hover {
    color: var(--text-color);
   
}

