body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px; /* Base font size */
}

.background {
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add padding for smaller screens */
    box-sizing: border-box; /* Ensure padding is included in width/height */
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure content doesn't overflow */
}

.logo {
    width: 100px; /* Adjust for smaller screens */
    margin-bottom: 20px;
}

input[type="submit"] {
    font-size: 1rem; /* Ensure submit button is readable */
}

.submit-button {
    background-color: #007bff; /* Bootstrap primary color */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}


/* Media queries for smaller screens */
@media (max-width: 600px) {
    .logo {
        width: 80px;
    }
    .content {
        padding: 15px;
    }
}
