/* Existing body and layout styles */
/* Full-page styling */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

/* Video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places the video behind all other content */
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the screen without distortion */
}

/* Add a fading overlay */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Slight dark overlay for readability */
    z-index: -1; /* Overlay sits above video, but behind other content */
}

/* Header with image and text on the top-right */
.header {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-image {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

.powered-by {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-left: 10px;
}

/* Login container styles */
.login-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);


}
.login-container {
    position: relative; /* Necessary for pseudo-element positioning */
}

.login-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px; /* Border thickness */
    border-radius: 30px;
    background: linear-gradient(to bottom right, #ff5ac0, #ffea00); /* Gradient */
}


h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
}

select, input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 15px;
    font-size: 1rem;
}

button {
    padding: 10px;
    background-color: #2575fc;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #6a11cb;
}

/* Agent preview styling */
.agent-preview img {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}