body{
    margin:0;
    font-family:Arial;
    background:url('../backgroundimg.jpg') no-repeat center center fixed;
    background-size:cover;
}

/* LOGO */

.logo{
    position:absolute;
    top:20px;
    right:50px;
    width:180px;
    background: #ffffff;
}

/* CENTER PANEL */

.container{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.panel{
    width:500px;
    background:rgba(0,0,0,0.75);
    padding:40px;
    border-radius:10px;
    color:white;
}

/* FORM */

label{
    display:block;
    margin-top:15px;
    font-weight:bold;
}

input{
    width:100%;
    padding:8px;
    margin-top:5px;
    border:none;
    border-radius:4px;
}

button{
    margin-top:20px;
    padding:10px 20px;
    background:#1e90ff;
    border:none;
    color:white;
    font-size:16px;
    cursor:pointer;
    border-radius:5px;
}

button:hover{
    background:#0d6efd;
}

.links{
    margin-top:20px;
}

.links a{
    color:#00d9ff;
    text-decoration:none;
    margin-right:15px;
}

.links a:hover{
    text-decoration:underline;
}

.success{
    color:#00ff90;
    font-weight:bold;
}

.run-btn{
    display:inline-block;
    background:#ffc107;
    color:black;
    padding:10px 18px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
    margin-top:10px;
}

.run-btn:hover{
    background:#e0a800;
}

.btn{
    display:inline-block;
    margin-top:20px;
    padding:10px 18px;
    background:#1e90ff;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.btn:hover{
    background:#0d6efd;
}

.log-box{
    background:black;
    color:#00ff9c;
    padding:20px;
    border-radius:5px;
    height:350px;
    overflow-y:auto;
    font-family:monospace;
    font-size:14px;
}


/* Center container */

.main-wrapper{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Two panels */

.panel-container{
    display:flex;
    gap:60px;
}

/* Panel style */

.panel{
    width:500px;
    padding:30px;
    background:rgba(0,0,0,0.65);
    color:#fff;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.panel h2{
    text-align:center;
    margin-bottom:20px;
}

/* Section headings */

.section-title{
    font-size:18px;
    border-bottom:1px solid rgba(255,255,255,0.3);
    margin-top:20px;
    margin-bottom:10px;
    padding-bottom:5px;
}

/* Links */

.module-link{
    display:block;
    text-decoration:none;
    color:#0b7285;
    padding:8px 10px;
    margin:6px 0;
    background:rgba(255,255,255);
    border-radius:4px;
    transition:0.3s;
    white-space: nowrap;
}

.module-link:hover{
    background:#007bff;
}

.header{
    width:100%;
    position:relative;
    padding:10px 20px;
}

.logo{
    position:absolute;
    top:10px;
    right:50px;
    height:50px; /* adjust size if needed */
    background: #ffffff;
}

.module-link{
    display:block;
    margin:8px 0;
    text-decoration:none;
    font-size:16px;
}

.module-link i{
    margin-right:8px;
    color:#0b7285;
}

