/* public/css/auth-custom.css */
body {
    background-color: #f7f9fc; /* Soft background to make the card pop */
}

.auth-container {
    padding: 2rem 15px;
}

.auth-wrapper {
    display: flex;
    max-width: 950px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
}

.auth-wrapper-wide {
    max-width: 1000px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 3rem;
}

.auth-image {
    flex: 1.2;
    /* Beautiful elegant interior design placeholder from Unsplash */
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop') center center / cover no-repeat;
    display: none;
    position: relative;
}

.auth-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.auth-image-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    color: #fff;
    z-index: 10;
}

.auth-image-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #fff;
}

.auth-image-text p {
    font-weight: 300;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (min-width: 992px) {
    .auth-image {
        display: block;
    }
}

.auth-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    display: block;
}

.auth-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    background-color: #f8fafc;
    width: 100%;
}

.auth-form .form-control:focus {
    background-color: #fff;
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
    outline: none;
}

.auth-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.auth-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.1s, box-shadow 0.3s;
    margin-top: 1rem;
    cursor: pointer;
}

.auth-btn:hover {
    background-color: #222;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.auth-btn:active {
    transform: translateY(2px);
}

.auth-links {
    margin-top: 2rem;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: #666;
    text-decoration: underline;
}

.auth-form .custom-checkbox {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.auth-form .custom-checkbox input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #000;
    cursor: pointer;
}

.auth-form .custom-checkbox label {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

@media (max-width: 576px) {
    .auth-content {
        padding: 2.5rem;
    }
}
