.login-container {
    margin: 50px auto;  
    background-color: #12284a;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-img {
      width: 150px;
      height: auto;
      margin-bottom: 15px;
    }

input[type="text"],
input[type="password"] {
    min-width: 250px;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #d4af37;
    border-radius: 6px;
    background-color: #0b1d3a;
    color: white;
    font-size: 14px;
}

form{
    display: flex;
    flex-direction: column;
    width: 90%;
}

#showMore{
    display: none;
    border-radius: 8px;
    padding: 4px;
    width: 100%;
    color: white;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #ccc;
}

.login-btn {
    background-color: #d4af37;
    color: #0b1d3a;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #c19b2e;
}