/* General styling */
body {
    display: flex;
    justify-content: space-between; /* Form on the left, AI text on the right */
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #2c3e50;
    background-size: cover;
    position: relative;
    flex-direction: row;
}

/* Login form */
.login-container {
    width: 30%;
    padding: 40px;
    background-color: transparent;
    text-align: left;
}

    .login-container h2 {
        margin-bottom: 30px;
        font-weight: bold;
        color: #ffffff;
    }

    .login-container label {
        margin-bottom: 10px;
        font-size: 16px;
        color: #ffffff;
        display: block;
    }

    .login-container .form-control {
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 16px;
    }

    .login-container .btn-primary {
        width: 100%;
        background-color: #3498db;
        border: none;
        padding: 15px;
        color: white;
        font-size: 18px;
        border-radius: 8px;
        margin-top: 20px;
        transition: background-color 0.3s ease;
    }

        .login-container .btn-primary:hover {
            background-color: #2980b9;
        }

/* AI text on the right */
.ai-text {
    font-size: 250px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: transparent;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    body {
        flex-direction: column; /* Stack elements vertically */
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
    }

    .login-container {
        width: 80%; /* Adjust width for smaller screens */
        text-align: center;
    }

    .ai-text {
        position: static; /* Remove absolute positioning */
        font-size: 80px; /* Reduce font size significantly */
        margin-top: 20px; /* Add space above */
        text-align: center;
    }
}
