/* Ensure the body and login container take up the full viewport height */
html, body, .login-container {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Base style for the main container */
.login-container {
    overflow: hidden; /* Hide any overflow */
}

/* Left Section - Background Image (Person on Mountain) */
.left-section {
    /* Replace with the actual image path or URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Right Section - Background Image (Blue Abstract Lines) */
.right-section {
    /* Use the abstract blue and white image as the background */ /* Abstract image file name */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Optional: Add a slight overlay if needed to match the image's brightness */
    /* background-color: rgba(255, 255, 255, 0.5); */
}

/* Form Card Styling */
.login-card {
    background-color: white;
    border-radius: 15px; /* Rounded corners for the card */
    max-width: 400px; /* Limit the width of the form card */
    width: 100%;
}

/* Header Title Styling */
.login-title {
    color: #007bff; /* Bright blue color */
    font-weight: 600;
}

/* Input Group Styling to mimic the image */
.input-group-text {
    background-color: transparent;
    border-right: none;
    color: #495057; /* Icon color */
}

.form-control {
    border-left: none;
    /* Remove default focus outline/shadow to keep it clean */
    box-shadow: none !important;
}

/* Login Button Styling */
.login-button {
    background-color: #007bff; /* Primary blue color */
    border-color: #007bff;
    font-weight: 600;
}

.login-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Forgot Password Link Styling */
.forgot-password-link {
    font-size: 0.85rem;
    color: #007bff;
    text-decoration: none;
}

/* OR Separator Styling */
.separator {
    position: relative;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

.or-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 10px;
    color: #888;
    font-size: 0.9rem;
}

/* Social Icons Styling */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid #ccc;
    color: #007bff; /* Icon color */
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: #f8f9fa;
}

/* Contact Info Styling */
.contact-info p {
    font-size: 0.9rem;
    color: #333;
}

.sales-contact, .support-contact {
    font-weight: 500;
}

.activate-windows-notice {
    font-size: 0.7rem;
    color: #6c757d;
}

/* Customizing input elements to remove default radius on specific sides for combined look */
.input-group-text:first-child {
    border-top-left-radius: 0.375rem; /* Bootstrap default */
    border-bottom-left-radius: 0.375rem;
    border-right: 1px solid #ced4da; /* Add border back */
}
.input-group-text:last-child {
    border-top-right-radius: 0.375rem; /* Bootstrap default */
    border-bottom-right-radius: 0.375rem;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.login-logo img {
    max-width: 100px;
}
.login-logo  {
    text-align: center;
}