
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(img/login.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            animation: animateBg 5s linear infinite;
            z-index: -1;
        }
        .b-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(img/background3.png) no-repeat;
            background-size: cover;
            background-position: center;
            animation: animateBg 5s linear infinite;
            z-index: -1;
        }

        @keyframes animateBg {
            100% {
                filter: hue-rotate(360deg);
            }
        }
        .body {
    font-family: Poppins, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;

margin-top: 30px;}
.container {
    width: 400px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100vh;
        height: 85vh;
}

h2{
    font-size: 2em;
            color: #fff;
            text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
  
    }

label {
    margin-top: 10px;
    color: #fff;
}

input,textarea {
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    background: transparent;
    color:#fff;
    border-radius: 5px;
}

button {
    background-color:red;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
    h2{
        font-family: 'Times New Roman', Times, serif;
    }