*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    font-family:Arial, Helvetica, sans-serif;
}

footer{
  margin-top:auto;
  text-align:center;
  color:white;
  padding:20px;
  font-size:14px;
}

.logo-container{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:60px;
}

.logo{
    width:500px;
    max-width:80%;
}

.login-container{
    flex:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}

.login-form{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.login-form input{
    width:333px;
    background:transparent;
    border:none;
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    font-size:16px;
    text-align:center;
    padding:5px 0;
    outline:none;
    margin-bottom:10px; /* ~1cm */
}

.login-form input::placeholder{
    color:transparent;
}

.login-form button{
    background:none;
    border:none;
    color:rgba(255,255,255,0.6);
    cursor:pointer;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:0.3s;
}

.login-form button:hover{
    color:#fff;
}


.input-container {
    display: flex;
    align-items: center;
    background-color: #0F172A;
    padding: 12px 15px;
    gap: 25px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
}

.bash-text {
    font-size: .9rem;
    color: blue;
    white-space: nowrap;
}

.user {
    color: white;
}

.vm {
    color: red;
}

.char {
    color: blue;
}

.input {
    flex: 1;
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: .9rem;
}

.input::placeholder {
    color: #64748B;
}

#loginBtn {
    border: none;
    width:20px;
    display:flex;
    height:20px;
    border-radius: 10px;
    cursor: pointer;
    background: #0F172A;
    color: white;
    font-size: 14px;
}


#loginBtn:hover {
    opacity: .9;
}

#result {
    color: white;
    text-align: center;
    font-size: 16px;
}

.welcome-text {
    color: #22C55E;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 40px;
}

.video-container {
    width: 800px;
    max-width: 90%;
    margin: 30px auto 0;
    border-radius: 10px;
    overflow: hidden;
    background: #0F172A;
    border: 1px solid rgba(255,255,255,0.15);
}

.video-container video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.stream-status {
    color: #64748B;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    min-height: 1.2em;
}

.logout-link {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-decoration: none;
}

.logout-link:hover {
    color: #fff;
}
