.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: #f3f4f8;
}

.logo img {
    width: 200px; /* Adjust the width as per your logo size */
    height: auto;
}

.company-field h1 {
    font-size: 24px;
    margin-top: 20px;
    font-family:'Times New Roman', Times, serif
}
/* Media queries for mobile view */
@media only screen and (max-width: 768px) {
    .logo img {
        width: 150px;
    }
    
    .company-field h1 {
        font-size: 18px;
        margin-top: 10px;
    }
}

/* Media queries for desktop view */
@media only screen and (min-width: 769px) {
    .logo img {
        width: 300px;
    }
    
    .company-field h1 {
        font-size: 36px;
        margin-top: 30px;
    }
}