.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    /* Add some space from the top */
}

input[type="text"] {
    color: white;
    background-color: #2963b9;
    width: 280px;
    height: 40px;
    margin-bottom: 20px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

input[type="text"]::placeholder {
    color: white;
}

button {
    width: 300px;
    height: 40px;
    margin-bottom: 20px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #2980b9;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #2c3e50;
}