body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Top bar styling */
.top-bar {
    background-color: #F9F9F9;
    padding: 5px 20px;
    font-size: 12px;
    color: #6B6B6B;
    border-bottom: 1px solid #E5E5E5;
    text-align: left;
}

.top-bar a {
    color: #1A73E8;
    text-decoration: none;
    margin-left: 5px;
}

/* Header styling */
.header {
    background-color: #FFFFFF;
    color: white;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.header .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header .logo-container img {
    height: 35px;
}

.header .language-selector {
    display: flex;
    align-items: center;
    border: 1px solid #2F318C;
    color: #2F318C;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.header .language-selector i {
    margin-right: 5px;
}

.header .content {
    margin-top: 30px;
}

.header .content h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #2F318C;
}

.header .content p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #666;
}

.header .illustration {
    position: absolute;
    bottom: 0;
    right: -50px;
    height: 100px;
}


.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3f51b5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: -25px;
    margin-top: -25px;
    box-sizing: border-box;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.list-scrolling {
    animation: marquee 20s linear infinite;
    height: 200px;
    overflow-y: auto;
}

.input-group-text {
    background-color: #3f51b5;
    color: #FFFFFF;
    border: none;
}

.form-control {
    border: 1px solid #3f51b5;
    color: #313130;
}

.btn {
    background-color: #3f51b5;
    color: #ffffff;
    border-radius: 15px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



.item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #eee;
}

.item:last-child {
    border-bottom: none;
}

.icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.icon img {
    width: 50px;
}

.content {
    flex: 1;
}

.title {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.description {
    margin: 5px 0 0 0;
    color: #666;
}

.arrow {
    color: #a17a8a;
    font-size: 24px;
    margin-left: auto;
}

.updated .tag {
    background: #db3d44;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 10px;
}

h2 {
    font-size: 20px;
}

#verify-button {
    display: inline-block;
    padding: 0.5rem 1rem;
}

.btn-eye {
    background: none;
    cursor: pointer;
    padding: 0.5rem;
}


@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}