/* Base styles for large screens */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('bot-bg.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 600px;
}
h2 {
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}
label {
    font-weight: bold;
}
input[type="text"], textarea, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button.btn {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button.btn:hover {
    background-color: #45a049;
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 1024px) {
    .container {
        width: 80%;
        padding: 20px 20px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    button.btn {
        padding: 8px;
        font-size: 14px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 10px 10px;
    }

    h2 {
        font-size: 1.2em;
    }

    button.btn {
        padding: 6px;
        font-size: 12px;
    }

    input[type="text"], textarea, select {
        padding: 6px;
    }
}
