body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.left-column, .right-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1, h2 {
    font-family: 'Roboto', sans-serif; /* Apply Roboto font */
}

h1 {
    font-size: 40px;
    margin: 0; /* Remove default margins */
    padding-bottom: 0px; /* Add custom padding to control spacing */
}

h2 {
    font-size: 25px;
    margin: 0; /* Remove default margins */
    padding-bottom: 15px; /* Add custom padding to control spacing */
}

.left-column {
    background-color: #920D12; /* Background color for left column */
}

.right-column {
    background-image: url('img/bg.png'); /* Background image */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center; /* Center the image */
    padding: 20px;
}

.logo {
    text-align: center;
}

.dbtitle {
    max-width: 400px;
    text-align: center;
}

.input-box {
    position: relative; /* To position the icon */
    margin-bottom: 3px;
}

.input-box i {
    position: absolute;
    left: 18px;
    top: 55%;
    transform: translateY(-50%);
    color: #666;
}

.input-box input {
    width: 100%;
    padding: 10px 10px 10px 40px; /* Add padding to make space for the icon */
    margin-top: 8px;
    box-sizing: border-box;
    border-radius: 50px;
}

.btn {
    display: inline-block;
    padding: 10px 40px;
    color: #fff;
    background-color: #920D12;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    margin-top: 12px;
}

.btn:hover {
    background-color: gray;
    color: black;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-column {
        height: 30vh;
        padding: 10px;
    }

    .right-column {
        height: 70vh;
        padding: 15px;
    }

    .logo img {
        max-width: 200px;
        height: auto;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 20px;
    }

    .dbtitle {
        max-width: 90%;
    }

    .input-box input {
        padding: 8px 8px 8px 35px;
    }
}

@media screen and (max-width: 480px) {
    .left-column {
        height: 25vh;
    }

    .right-column {
        height: 75vh;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 18px;
    }

    .logo img {
        max-width: 150px;
    }

    .btn {
        padding: 8px 30px;
        font-size: 14px;
    }
}
