/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f6f8; /* Light grey background */
    color: #333333;
    overflow-x: hidden;
}

/* Page Layout Wrapper */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image: url('/images/bg-pattern.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 60%; /* Adjust based on image scale */
}

/* Login Card styling based on mockup */
.login-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 45px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.logo-container {
    margin-bottom: 35px;
}

.brand-logo {
    max-height: 50px;
    width: auto;
}

/* Forms and Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 11px 14px; /* Reduced padding for a sleeker look */
    font-family: 'Poppins', sans-serif;
    font-size: 13px; /* Slightly smaller text to match mockup */
    border: 1px solid #c8c8c8; /* Lighter, crisp border */
    border-radius: 6px; /* Smooth rounded corners */
    background-color: #ffffff;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
}  transition: border-color 0.2s ease;
}

    .form-control::placeholder {
        color: #a0a0a0;
    }

    .form-control:focus {
        border-color: #9650D5;
    }

/* Buttons */
.btn {
    width: 100%;
    padding: 9px 12px; /* Thinner vertical padding to match the mockup */
    font-family: 'Poppins', sans-serif;
    font-size: 13px; /* Matches input font size */
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
}

.btn-primary {
    background-color: #9650D5;
    color: #ffffff;
    border: none;
    margin-top: 12px;
}
    .btn-primary:hover {
        background-color: #8243ba;
    }

.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.btn-outline {
    background-color: transparent;
    color: #9650D5;
    border: 1px solid #9650D5; /* Matches the clean, thin accent line */
}

    .btn-outline:hover {
        background-color: rgba(150, 80, 213, 0.04);
    }

/* Footer text inside the card */
.login-footer {
    margin-top: 30px;
    font-size: 11px;
    color: #9c9c9c;
    letter-spacing: 0.5px;
}
