html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* General styles */
body, html {
    height: 100%;
}


.split-left {
    background: url('/images/signup-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5vw;
    position: relative;
}

    /* Optional: overlay for better text contrast */
    .split-left::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
        z-index: 0;
    }

    .split-left > div {
        position: relative;
        z-index: 1; /* ensure text is above overlay */
    }


/*.split-left {
    background: #111;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5vw;
}*/

.split-right {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.btn-dark {
    border-radius: 8px;
}

.signup-container {
    max-width: 400px;
    width: 100%;
}

.google-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    padding-left: 1.5rem;
}

    .google-btn i {
        margin-right: 8px;
    }

.divider {
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}

.form-label {
    font-weight: 500;
}

.form-check-label {
    font-size: 0.95rem;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
}

.signup-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.left-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.left-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.left-imgs img {
    width: 120px;
    margin-right: 1rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .split-left,
    .split-right {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .left-imgs img {
        width: 80px;
    }
}

.social-login {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 1rem;
}

.social-btn {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.6rem;
    background: #fff;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .social-btn:hover {
        background: #f1f1f1;
    }

    /* Brand colors (optional best practice) */
    .social-btn.google {
        color: #db4437;
    }

    .social-btn.facebook {
        color: #1877f2;
    }

    .social-btn.linkedin {
        color: #0a66c2;
    }

/* Sidebar Styling */
#wrapper {
    display: flex;
    width: 100%;
}

#sidebar-wrapper {
    min-width: 220px;
    max-width: 220px;
    height: 100vh;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -220px;
    transition: margin 0.3s ease-in-out;
}

#page-content-wrapper {
    flex: 1;
}

.list-group-item {
    border: none;
    padding: 15px 20px;
}

    .list-group-item:hover {
        background-color: #495057;
        color: #fff;
    }

.hidden {
    display: none !important;
}
