.login-body {
  padding: 2rem;
}


/* Titles */
.title-container {
  text-align: center;
}

.form-wrapper{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
flex-direction: row;
width: 50%;
z-index: 300;
}

/* Invalid feedback */
.form-wrapper .message {
  font-size: 0.8rem;
  color: #d9534f;
  margin-top: 0.25rem;
  display: none; /* shown via JS if needed */
}

/* Button */
.form-group>.btn-primary {
  width: 100%;
  padding: 0.75rem;
  background: #079cff;
  border: none;
  border-radius: 6px;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

.form-group>.btn-primary:hover {
  background: #ffc107ba;
  color:white;
  transition: all .2s ease-in-out;
}

.form-wrapper button, .form-wrapper .btn-primary {
  font-family: 'Nunito', sans-serif;
}

.form-wrapper .password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.form-wrapper .toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #555;
  transition: color 0.3s;
}

.form-wrapper .toggle-password:hover {
  color: #000;
}

.form-wrapper .password-container input {
  box-shadow: 0px 0px 0px 1px #ccc;
  border-radius: 6px;
  padding-right: 40px;
  outline: none;
}


#editor {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 200px;
}

.block {
    border: 1px dashed #aaa;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.toolbar {
    margin-bottom: 15px;
}

button {
    margin-right: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.block img,
.block video,
.block iframe {
    max-width: 100%;
    margin: 5px 0;
    display: block;
}

