body{
    background:#050505;
    color:white;
    font-family:Segoe UI,Arial;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    margin:0;
}

.login-box{
    background:#0d0d0d;
    border:1px solid #7a3cff;
    padding:40px;
    width:360px;
    text-align:center;
    box-shadow: 0 0 10px #7a3cff,0 0 30px #7a3cff40;
    border-radius:10px;
}

.logo{
    width:120px;
    margin-bottom:10px;
}

h1,h2,h3{
    color:#b68cff;
    margin:5px;
}

.subtitle{
    color:#aaa;
    margin-bottom:20px;
}

input, textarea{
    width:100%;
    padding:10px;
    margin-bottom:12px;
    background:#111;
    border:1px solid #444;
    color:white;
    border-radius:6px;
}

input:focus, textarea:focus{
    outline:none;
    border-color:#7a3cff;
    box-shadow:0 0 5px #7a3cff;
}

button{
    width:100%;
    padding:10px;
    background:#7a3cff;
    border:none;
    color:white;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
    transition:.2s;
}

button:hover{
    background:#9d66ff;
    box-shadow:0 0 10px #7a3cff;
}

/* ------------------ AI PAGE STYLING ------------------ */
#chatContainer {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 300px; /* chat area height */
    margin-bottom: 10px;
}

#chat {
    flex: 1;
    overflow-y: auto;
    border: 1px solid #7a3cff;
    padding: 5px;
    border-radius: 6px;
    background: #111;
    margin-bottom: 5px;
    font-size: 14px;
}

#chat p {
    margin: 4px 0;
}

#chatContainer input#prompt {
    flex: 1;
    padding: 6px;
    margin-right: 5px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #111;
    color: white;
}

#chatContainer button {
    padding: 6px 12px;
    width: auto;
    font-size: 14px;
}
