﻿body {
    font-family: 'Inter', sans-serif;
}

.left-bg {
    background-color: #e7f0ff;
    background-image: url('../../images/login/3d-low-poly.png');
    background-size: cover;
}

.right-bg {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" width="100%25" height="100%25"%3e%3cdefs%3e%3cpattern id="p" width="12" height="12" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"%3e%3ccircle cx="1" cy="1" r="1" fill="%23E6E7EB"/%3e%3c/pattern%3e%3c/defs%3e%3crect width="100%25" height="100%25" fill="url(%23p)"/%3e%3c/svg%3e');
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 38px; /* Fixed position relative to input */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 5;
}

.login-image {
    max-height: 70vh;
    width: auto;
    object-fit: contain;
}

.login-tab {
    transition: all 0.3s ease;
    text-align: left;
}

    .login-tab.active {
        color: #0d6efd !important;
        border-bottom: 2px solid #0d6efd !important;
        border-radius: 0 !important;
    }

    .login-tab:not(.active) {
        color: #6c757d !important;
    }

.login-form {
    display: none;
}
.btn:focus {
    box-shadow: none;
}
.login-form.active {
    display: block;
}
.registration-container .form-label {
    font-size: 14px;
}
@media (max-width: 991.98px) {
    .login-image {
        max-height: 40vh;
        margin-top: 2rem;
    }

    .left-column {
        display: flex !important;
        height: auto;
        padding: 2rem 0;
    }

    .right-column {
        padding: 2rem 1.5rem;
    }
}
.fs-7 {
    font-size: 14px !important;
}
.fs-8 {
    font-size: 12px !important;
}
.btn-primary {
    color: #fff;
    background-color: #5a37fd;
    border-color: #5a37fd;
}
a.ai-tutor-btn1, button.ai-tutor-btn1 {
    border-radius: 7px;
    display: inline-block;
    height: 52px;
    line-height: 50px;
    color: #263A75;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.4s;
    border-style: solid;
    background: #03F2B1;
}
a.ai-tutor-btn2, button.ai-tutor-btn2 {
    border-radius: 7px;
    display: inline-block;
    height: 52px;
    line-height: 50px;
    color: #fff;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.4s;
    border-style: solid;
    background: #5a37fd;
    border: 2px solid transparent;
}
    a.ai-tutor-btn2, button.ai-tutor-btn2:hover {
        color: #14055b;
        background: #8369ff;
    }
a.ai-tutor-btn2, button.ai-tutor-btn1:hover {
    color: #fff;
    background: #0dbf8f;
}
/*------------------------
    registration forms 
-------------------------*/
.registration-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            border: none;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .form-control:focus, .form-select:focus {
            border-color: #86b7fe;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        .btn-primary {
            background: linear-gradient(to right, #4e54c8, #8f94fb);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: linear-gradient(to right, #3a3eb6, #7a7ff5);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .form-title {
            color: #4e54c8;
            font-weight: 700;
            border-bottom: 2px solid #4e54c8;
            padding-bottom: 10px;
            margin-bottom: 25px;
            text-align:center;
        }
        .header {
            text-align: center;
            margin-bottom: 40px;
            color: #4e54c8;
        }
        .header h1 {
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        .header p {
            color: #6c757d;
            font-size: 1.1rem;
        }