/* Login page — scoped styles, prefixed dt-login- to avoid clashing with site.css */

html, body {
    height: 100%;
    margin: 0;
    background: #fff;
}

.dt-login-bg {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 24px;
    box-sizing: border-box;
}

.dt-login-outer {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.dt-login-inner {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 40px 32px;
    box-sizing: border-box;
}

.dt-login-form {
    width: 100%;
}

.dt-login-form img {
    max-width: 100%;
    height: auto;
}

.dt-login-heading h3 {
    text-align: left;
    font-weight: 700;
    color: #151b8d;
    margin-bottom: 0;
}

.dt-login-heading h2 {
    text-align: left;
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 0;
}

.dt-login-heading h4 {
    font-weight: 500;
    color: #6b7280;
    margin-top: 0.5rem;
}

.dt-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.dt-login-form .form-control {
    width: 100%;
    border-radius: 6px;
    padding: 10px 12px;
    box-sizing: border-box;
}

.dt-login-form .form-control:focus {
    border-color: #151b8d;
    box-shadow: 0 0 0 0.15rem rgba(21, 27, 141, 0.15);
}

.dt-login-form .btn-primary {
    background-color: #151b8d;
    border-color: #151b8d;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
}

.dt-login-form .btn-primary:hover {
    background-color: #10156b;
    border-color: #10156b;
}

.dt-password-wrapper {
    position: relative;
    width: 100%;
}

.dt-password-wrapper input {
    padding-right: 40px;
}

.dt-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
}

.dt-already-text a {
    color: #151b8d;
}
