@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&display=swap');


body {
    font-family: Arial, sans-serif;
    background-image: linear-gradient(#E50000, #000000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 105vh;
    margin-top: 0;
    margin-bottom: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: 250px;
    margin-bottom: 20px;
}

h1 {
    color: #333;
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
}


label {
    display: block;
    margin-top: 10px;
    text-align: left;
}

input, select, textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    input, select, textarea {
        width: calc(100% - 10px);
    }
    
    button {
        width: 100%;
    }
}


.HEADING{
    margin-top: 50px;
    color: #fff;
    margin-bottom: -5px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Inknut Antiqua", serif;
    font-weight: 700;
    font-style: normal;
}
.top{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}