
    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        background: url('/static/img/chatbox-ai.jpg') no-repeat center center fixed;
        background-size: cover;
        height: 100vh;
        overflow: hidden;
        display: flex;
        justify-content: flex-end;
    }
    
    .container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100vh;
        margin-right: 20px;
    }
    
    .login-form {
        background: rgba(255, 255, 255, 0.8);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        width: 300px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .login-form h1 {
        margin-bottom: 20px;
    }
    
    .login-form .input-container {
        position: relative;
        margin-bottom: 10px;
    }

    .login-form .input-container i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
    }
    
    .login-form input {
        width: 260px;
        padding: 10px 10px 10px 30px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    .login-form button {
        width: 100%;
        padding: 10px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .login-form .signup {
        width: 100%;
        padding: 10px;
        background-color: #61C9B4;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .login-form button:hover {
        background-color: #0056b3;
    }
    
    .login-form .signup:hover {
        background-color: #34B098;
    }
    
