@import './../client/css/variables.css';

body {
    background-color: var(--clr-blue-bg);
    color: var(--clr-white);
    font-family: var(--ff-sans);
}
.backoffice__nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.backoffice__logo{
    width: 5rem;
    height: 3rem;
}
.backoffice__com{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


  
  .backoffice #backoffice__newmovie ,.backoffice__deletemovie{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
  }
  .backoffice__movie{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .backoffice input,select{
    width: 75%;
    height: 3rem;
    padding-left: 10px;
    border-radius: 3rem;
  }
  .backoffice-subtitle{
    text-align: center;
  }

