
    #contact form {
        background: #fff;
        padding: 2rem;
        border-radius: 12px;
        max-width: 480px;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    #contact label {
        display: block;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    #contact input, #contact textarea {
        width: 90%;
        padding: 0.75rem;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
        box-sizing: border-box;
    }
    #contact textarea {
        height: 120px;
        resize: vertical;
    }
    #contact button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 0.75rem 1.25rem;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
        width: 90%;
        transition: background-color 0.2s ease;
    }
	
    #contact button:hover {
        background-color: #0056b3;
    }
	
    #contact .message {
        text-align: center;
        padding: 0.75rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    #contact .success { background: #d4edda; color: #155724; }
    #contact .error   { background: #f8d7da; color: #721c24; }
	
	.moreinfo {
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		height: 0;
		width: 0;
		z-index: -1;
	}
