.login-page {
    max-width: 1280px;
    padding: 20px 40px;
}

.login-title,
.reset-title {
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 40px;
}

.login-form {
    max-width: 1200px;
}

.form-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 28px;
    align-items: center;
    margin-bottom: 26px;
}

.form-row label {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #0f2f57;
}

.login-input {
    width: 100%;
    max-width: 750px;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
}

.form-label-spacer {
    width: 100%;
}

.actions-row {
    margin-top: 8px;
}

.actions-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-signin:hover {
    background: #157347;
}

.forgot-link:hover,
.btn-red:hover {
    background: var(--dilawri-red-dark);
    color: #fff;
    text-decoration: none;
}

.btn-signin,
.forgot-link,
.btn-red {
  min-width: 165px;
  height: 41px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  cursor: pointer;
  font-size: 16px;
}

.btn-signin {
  background: #198754;
}

.btn-signin:hover {
  background: #157347;
}

.forgot-link,
.btn-red {
  background: var(--dilawri-red);
}

.forgot-link:hover,
.btn-red:hover {
  background: var(--dilawri-red-dark);
}

.alert {
    max-width: 1200px;
    margin: 15px auto 20px auto;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #fdecec;
    border-color: #f5c2c7;
    color: #a12622;
}

.alert-success {
    background-color: #eaf7ee;
    border-color: #b7dfc2;
    color: #1f6b37;
    width: fit-content;
    margin-left: 0;
}

.alert-danger {
    background-color: #fdecec;
    border-color: #f5c2c7;
    color: #a12622;
    width: fit-content;
    margin-left: 0;
}


.alert-warning {
    background-color: #fff8e5;
    border-color: #f2d58a;
    color: #8a6d1d;
}

.alert-info {
    background-color: #eaf4fb;
    border-color: #b9d8ee;
    color: #24597a;
}

.alert .close {
    font-size: 20px;
    line-height: 1;
    color: inherit;
    opacity: 0.7;
    padding-right: 20px;
}

.alert .close:hover {
    opacity: 1;
}