@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #e64a19;
    --primary-hover: #d84315;
    --bg-color: #f0f2f5;
    --card-bg: #ffffff;
    --input-bg: #f3f4f6;
    --text-main: #1a202c;
    --text-muted: #718096;
    --border-radius-card: 24px;
    --border-radius-inner: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at center, transparent 0%, rgba(33, 150, 243, 0.05) 100%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-page {
    background: transparent !important;
}

.login-box {
    width: 420px;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    background: var(--card-bg);
}

/* Card Header - Matching the reference */
.login-header {
    background-color: var(--primary-color);
    padding: 20px 20px;
    text-align: center;
    color: white;
}

.login-header img {
    height: 60px;
    filter: brightness(0) invert(1); /* Make the dog logo white */
    margin-bottom: 10px;
}

.login-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.login-box-body {
    padding: 40px;
}

.login-box-msg {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background-color: var(--input-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    height: 50px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 74, 25, 0.1);
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-inner);
    height: 52px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(230, 74, 25, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(230, 74, 25, 0.3);
}

.checkbox.icheck {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.checkbox label {
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

.divider-wrapper {
    margin: 30px 0;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.divider-wrapper::before,
.divider-wrapper::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider-wrapper span {
    padding: 0 15px;
}

.social-btn {
    width: 100%;
    height: 50px;
    background: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: #f8f9fa;
    border-color: #d2d4d7;
}

.social-logo {
    width: 20px;
    height: 20px;
}

.error-message {
    background-color: #fff5f5;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #fc8181;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.links-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

.links-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.links-footer a:hover {
    text-decoration: underline;
}

/* Override AdminLTE/Bootstrap defaults */
.login-box-body {
    border: none !important;
}

.has-feedback .form-control-feedback {
    right: 15px;
    color: var(--text-muted);
    line-height: 50px;
}