body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #e4002b;
    font-family: 'Poppins', sans-serif;
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 12px;
    background: rgba(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
}


/* Portrait images */
@media (orientation: portrait) {
    .carousel-item.item1 {
        background-image: url('img/1p.jpg');
    }

    .carousel-item.item2 {
        background-image: url('img/2p.jpg');
    }

    .carousel-item.item3 {
        background-image: url('img/3p.jpg');
    }
}

.login-box {
    width: 100%;
}

.loginbutton {
    border: none;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #e4002b;
    border: 1px solid #e4002b;
}

.forgotbutton {
    color: #e4002b;
    font-size: 12px;
}

.loginbutton:hover {
    background-color: #ffffff;
    color: #e4002b;
    border: 1px solid #e4002b;
}

::placeholder {
    color: #ccc;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #ccc;
}


input {
    margin-bottom: 10px;
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px;
}


footer {
    background-color: #eee;
    color: #a5a5a5;
    text-align: center;
    padding: 10px;
    position: relative;
    font-size: 10px;
    bottom: 0;
    width: 100%;
}