html, body {
    background-color: #f0f4f8; /* Background color as fallback */
    background-size: cover; /* Make the image cover the entire page */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    color: #636b6f;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    height: 100vh;
    margin: 0;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.content {
    text-align: center;
    /*background: rgba(255, 255, 255, 0.8); !* Semi-transparent white background for content *!*/
    padding: 20px;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

.title {
    font-size: 84px;
    margin-bottom: 30px;
}

.form-container {
    margin-top: 20px;
    width: 100%;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: #636b6f;
    box-shadow: 0 2px 6px rgba(99, 107, 111, 0.3);
}

button {
    padding: 11px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #636b6f;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #4a5357;
}

button:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    form {
        flex-direction: row;
        align-items: stretch;
    }

    input[type="text"], button {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    button {
        margin-bottom: 0;
    }
}
