body{
    background: #1e1e1e;
}
.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo {
    width: 750px;
    margin-bottom: 0px;
}

.judul{
    color: #fff;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size:28px;
}

.search-input {
    padding: 10px;
    font-size: 3rem;
    border-radius: 50px;
    width: 500px;
    margin-bottom: 10px;
    background: #272727;
    border: 1px solid #656565;
    color:#00fdff !important;
}

.search-btn {
    padding: 15px 40px;
    font-size: 3rem;
    border: none;
    border-radius: 50px;
    background-color: #213c79;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    margin-top: 10px;
    text-align: center;
    font-size:28px;
}

