@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

*{
    box-sizing: border-box;
}

body{
    background-color: rebeccapurple;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

h1{
    position: absolute;
    top: 0;
    color: white;
}

#logo {
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
  }
  
  #logo img {
    display: block;
    margin: auto;
    width: 55px;
  }

.btn{
    background-color: #ffffff;
    color: rebeccapurple;
    font-weight: bold;
    font-family: inherit;
    padding: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn:focus{
    outline: none;
}

.btn:active{
    transform: scale(0.98);
}

#toasts{
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toast{
    background-color: #fff;
    border-radius: 5px;
    padding: 1rem 2rem;
    margin: 0.5rem;
}

.toast.info{
    color: rebeccapurple;
}

.toast.success{
    color: green;
}

.toast.error{
    color: red;
}

