/* 1. Main container whole black background */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    height: 100vh;
}

.main-container {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #000;
}

/* 2. Left Panel Styling */
.left-panel {
    width: 36%;
    color: white;
    padding: 90px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Separates top and bottom into a flex */
}

.left-panel .top-content{
    display: flex;
    flex-direction: column;
    gap: 20px
}

.left-panel .top-content .welcome-lut {
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
}

.left-panel .top-content .info-text{
    display: flex;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
}

.left-panel .top-content .info-text .logo-icon img {
    width: 100px;
    height: 100px;
    margin-left: 60px;
}

.bottom-content {
    font-size: 0.8rem;
}

.bottom-content a {
    color: white;
    text-decoration: underline;
    display: block;
    margin-top: 10px;
}

/* 3. Right Panel Styling */
.right-panel {
    width: 86%;
    background-color: #fff;
    padding: 28px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    font-size: 30px;
}

    /* width: 65%;
    height: auto;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 30px 55px;
    zoom: 90%;
    margin-top: 50px; */

.right-panel .gatway{
    font-size: 30px;
    color: #452bb5;
    font-weight: 500;
}

/* Gateway images as flex */
.gateway-grid {
    display: grid;
    /* This creates exactly 5 equal columns */
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px 6px;
    align-items: center;
    width: 500px;
}

.gateway-grid img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    flex: 0 1 15%; 
    cursor: pointer;
}

/* Search container as flex */
.search-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.search-container label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 10px;
}

.search-container input {
    border: 1.5px solid #4B269F;
    border-radius: 8px;
    padding: 12px;
    outline: none;
}