*{
    box-sizing: border-box;
}
#crudplugin-header-container{
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: rgb(35, 32, 32);
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.804);
    height: 3rem;
}
#crudplugin-auth h2{
    color: black;
    text-align: center;
}
#crudplugin-auth button{
    padding: 0.45rem 2rem;
    border-radius: 0.5rem;
    margin: 0.5rem;
    outline: none;
    border: none;
    font-size: 0.8rem;
    background: rgba(66, 76, 225, 0.698);
    color: rgba(255, 255, 255, 0.809);
}
#crudplugin-auth button:hover{
    cursor: pointer;
    background-color: rgb(50, 50, 186);
    color: white;
}

#crudplugin-auth *{
     color: rgba(255, 255, 255, 0.834);
     font-weight: 500;
     font-size: medium;
}

a{
    color: rgba(255, 255, 255, 0.791);
}

#crudplugin-auth{
    width: 50%;
    padding: 1rem;
    color: white;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
}

@media (max-width: 600px) {
  #crudplugin-auth  {
    width: 100% !important;
    align-self: left;
  }
}

#crudplugin-auth input{
    padding: 0.5rem;
    width: 100%;
    margin: 0.5rem;
    background-color: rgba(30, 30, 30, 0.872);
    outline: none;
    border-radius: 1rem;
    border:none;
}
#crudplugin-auth input:focus{
    padding: 0.5rem;
    width: 100%;
    margin: 0.5rem;
    background-color: rgba(115, 115, 115, 0.447);
    outline: none;
    border-radius: 1rem;
    border:none;
}
#crudplugin-auth label{
    width: 100%;
    text-align: left;
    padding: 0.25rem;
}
#crudplugin-auth form input {
    margin-bottom: 0.25rem;
}

#crudplugin-auth form{
   
    background-color: rgb(0, 0, 0);
    padding: 0.5rem; 
    border-radius: 0.5rem;
    justify-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#crudplugin-auth section{
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#crudplugin-auth .errorMsg{
    background-color: rgb(193, 19, 19);
    color: rgb(250, 250, 250);
    border-radius: 0.5rem;
    padding: 2rem;
}
#crudplugin-account-register-form{
    display: 'none';
}

#crudplugin-success-message{
    background-color: rgb(25, 177, 25);
    overflow: hidden;
    z-index: 10;
    width: 100%;
    padding: 0.5rem 0.5rem;
    color: white;
    margin-top: 1rem;
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;

}
