input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(81, 203, 238, 1); /* Light blue glow effect */
    border: 1px solid rgba(81, 203, 238, 1); /* Matching border color with the glow */
}

/* Rest of the CSS remains the same */
body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Ubuntu, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6ebf1;
}

.container {
    max-width: 380px;
    margin: 10px auto;
    padding: 22px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
    box-sizing: border-box;
}

img {
    width: 85px;
    height: auto;
    display: block;
    margin: 0 auto 0;
}

h1 {
    text-align: center;
    color: #697386;
    font-size: 2em;
    margin: 8px 0;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #555;
}

input, select, textarea {
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 15px;
}

button {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #5469d4;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"] {
    background-color: #5469d4;
}

button:hover {
    background-color: #4254a4;
    opacity: 0.9;
}

textarea {
    resize: vertical;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 32px;
    }

    h1 {
        font-size: 1.75em;
    }

    input, select, textarea {
        font-size: 14px;
        padding: 10px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.5em;
    }

    input, select, textarea {
        font-size: 12px;
        padding: 8px;
    }

    button {
        font-size: 12px;
        padding: 8px;
    }
}

.container1 {
    max-width: 400px;
    margin: 10px auto;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
    box-sizing: border-box;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #f8f8f8;
    margin-top: 20px;
}

footer p {
    color: #697386;
    margin: 0;
}
