
:root {
  --wt_red:#cc1515;
}

/* Login page */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}
.split-left {
  background-color: #ffffff;
  color: black;
  padding: 60px;
}
.split-right {
  background-color:var(--wt_red);
  color: white;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form {
  max-width: 350px;
  margin: auto;
}
.brand-text {
  text-align: center;
}
.brand-text h1 {
  font-weight: bold;
}
.form-control {
  border-radius: 0.5rem;
}
.btn-custom {
  background-color: var(--wt_red);
  color: white;
  width: 100%;
  border-radius: 0.5rem;
}
.btn-custom:hover {
  background-color: var(--wt_red);
}

/* Dashboard */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}
.sidebar {
  height: 100vh;
  background-color: var(--wt_red);
  color: white;
  padding-top: 20px;
  position: fixed;
  width: 220px;
}
.sidebar h4 {
  text-align: center;
  font-weight: bold;
}
.sidebar a {
  color: white;
  display: block;
  padding: 12px 20px;
  text-decoration: none;
}
.sidebar a:hover {
  background-color: var(--wt_red);
  text-decoration: none;
}
.main {
  margin-left: 220px;
  padding: 20px;
}
.navbar {
  background-color: white;
  border-bottom: 1px solid #dee2e6;
}
.card {
  border-radius: 12px;
}
.card-header {
  background-color: var(--wt_red);
  color: white;
  font-weight: bold;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.text-login{
  font-weight: bold;
}