/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}
h1, h2, h3 {
    margin: 0;
}
.top-section {
    display: flex;
    margin-top: -25px;
}

/* Top Left Section */
.top-left {
    align-items: center;
    padding: 20px;
    width: 40%;
    height: 200px;
    margin: 20px;
    margin-top: 60px;
    margin-left: 75px;
    text-align: center;
}
.top-left .logo {
    height: 200px;
    align-items: center;
}
.top-left h1 {
    font-size: 60px;
    color: #007bff;
}

/* Top Right Section */
.top-right {
    width: 40%;
    margin-top: 80px;
    text-align: center;
    padding: 20px;
    top: 20%;
}
.top-right h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color:#007bff;
}
.top-right form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-right input {
    width: 80%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.top-right button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 83%;
    margin: 10px 0;
}
.top-right button:hover {
    background-color: white;
    border: #007bff 1px solid;
    color: #007bff;
}
.signup-text {
    font-size: 14px;
    margin-top: 10px;
}
.signup-text a {
    color: #007bff;
    text-decoration: none;
}
.signup-text a:hover {
    text-decoration: underline;
}

/* Bottom Info Section */
.bottom-info {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    margin: 40px 40px;
    margin-top: 100px;
}
.info-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    margin-top: -60px;
}
.info-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #007bff;
}
.info-card p {
    font-size: 16px;
    color: #555;
}

.footer-text {
    display: flex;
    position: fixed;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 50px;   
    margin-top: -10px;
    background-color: #007bff;
    width: 96%;
    font-weight: bold;
    color: white;
}
